add hello world example

This commit is contained in:
darkf 2013-10-20 17:41:22 -07:00
parent ef6b9d87c9
commit 262ab75e61
1 changed files with 4 additions and 0 deletions

4
examples/helloworld.lamb Normal file
View File

@ -0,0 +1,4 @@
hello(object) -> object + "!".
hello() -> "hello, " + hello("world").
putstrln(hello()).