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