rubyx/lib/parfait/array.rb

17 lines
264 B
Ruby
Raw Normal View History

2014-07-17 01:26:13 +02:00
# this is not a "normal" ruby file, ie it is not required by kide
# instead it is parsed by kide to define part of the kide that runs
class Array < BaseObject
def initialize size
end
def at(index)
end
def set(index , value)
end
end