lamb/examples/helloworld.lamb
2013-10-20 18:59:22 -07:00

4 lines
89 B
Text

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