# this is not a "normal" ruby file, ie it is not required by salama # instead it is parsed by salama to define part of the program that runs class Array < BaseObject def initialize size end def at(index) end def set(index , value) end end