Files
rubyx/lib/parfait/array.rb
2014-07-17 01:00:15 +03:00

17 lines
276 B
Ruby

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