rubyx/lib/parfait/array.rb

17 lines
276 B
Ruby
Raw Normal View History

# 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