lamb/examples/helloworld.lamb

4 lines
89 B
Plaintext
Raw Normal View History

2013-10-21 00:41:22 +00:00
hello(object) -> object + "!".
hello() -> "hello, " + hello("world").
putstrln(hello()).