lamb/examples/helloworld.lamb

4 lines
89 B
Plaintext
Raw Normal View History

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