lamb/examples/helloworld.lamb

4 lines
89 B
Plaintext

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