transformations according to todays post

This commit is contained in:
Torsten Ruger
2014-06-14 00:19:12 +03:00
parent 12a92e4db0
commit 2c26415de7
12 changed files with 138 additions and 127 deletions

16
lib/parfait/array.rb Normal file
View File

@@ -0,0 +1,16 @@
# 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