lamb/examples/helloworld.lamb
2013-10-20 17:41:22 -07:00

4 lines
89 B
Text

hello(object) -> object + "!".
hello() -> "hello, " + hello("world").
putstrln(hello()).