2014-07-29 18:33:11 +03:00
|
|
|
# this is not a "normal" ruby file, ie it is not required by salama
|
2014-08-05 15:55:24 +03:00
|
|
|
# instead it is parsed by salama to define part of the program that runs
|
2014-05-31 12:52:29 +03:00
|
|
|
|
|
|
|
class Array < BaseObject
|
|
|
|
def initialize size
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
def at(index)
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
def set(index , value)
|
|
|
|
|
|
|
|
end
|
|
|
|
end
|