lamb/examples/helloworld.lamb

4 lines
89 B
Plaintext

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