11. オブジェクト指向 • すべてがオブジェクト(Javaのプリミティブ型 のようなものは存在しない) • たとえば、クラスは Class クラスのインスタンス > 'hi'.class => String > 'hi'.class.class => Class 12. ブロック • イテレータとして • より広く、制御構造の抽象化として ['toyama', 'ishikawa', 'fukui'].each {|ken| p ken } def open(path) file = new(path) yield(file) file.close end open(path) {|file| file.write('hi') }