rubyx/lib/parfait/array.rb
Torsten Ruger 7b6f364ba8 namechange
2014-07-29 18:33:11 +03:00

17 lines
270 B
Ruby

# 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 salama that runs
class Array < BaseObject
def initialize size
end
def at(index)
end
def set(index , value)
end
end