2014-07-17 00:00:15 +02:00
|
|
|
# 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
|
2014-05-31 11:52:29 +02:00
|
|
|
|
|
|
|
class Array < BaseObject
|
|
|
|
def initialize size
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
def at(index)
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
def set(index , value)
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|