rubyx/lib/parfait/array.rb
Torsten Ruger ce3505710a basic send
2014-08-05 15:55:24 +03:00

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