crystal says Hello.

This commit is contained in:
Torsten Ruger
2014-05-06 21:36:28 +03:00
parent fa123e0354
commit 4135c4d2dc
14 changed files with 134 additions and 114 deletions

View File

@@ -21,11 +21,12 @@ module Vm
end
def load_args
args.each_with_index do |arg , index|
arg.load index
add_code arg.load(index)
end
end
def do_call
Machine.instance.function_call self
add_code Machine.instance.function_call self
end
end
end