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

@@ -49,6 +49,8 @@ module Vm
fun = get_function name
unless fun
fun = Function.new(name)
block = Core::Kernel.send(name)
fun.set_body block
@functions << fun
end
fun