17 lines
276 B
Ruby
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
|