2014-07-29 17:33:11 +02:00
|
|
|
# this is not a "normal" ruby file, ie it is not required by salama
|
2014-08-05 14:55:24 +02:00
|
|
|
# instead it is parsed by salama to define part of the program that runs
|
2014-05-31 11:52:29 +02:00
|
|
|
|
|
|
|
class Array < BaseObject
|
2014-08-28 15:39:35 +02:00
|
|
|
#many basic array functions can not be defined in ruby, such as
|
|
|
|
# get/set/length/add/delete
|
2014-08-28 17:53:48 +02:00
|
|
|
# so they must be defined as CompiledMethods in Builtin::Kernel
|
2014-08-28 15:39:35 +02:00
|
|
|
|
2014-05-31 11:52:29 +02:00
|
|
|
end
|