#!/usr/local/bin/ruby i = 100 @i = 555 class C def initialize() @i = "ok" end def get_i() return @i end end c = C.new() #c.set_i("ok") p(c.get_i()) # "ok"を表示する