lamb/examples/hibye.lamb

7 lines
128 B
Plaintext

-- demonstrates string patterns
f("hi") -> "hello to you too!".
f("bye") -> "goodbye!".
putstrln(f("hi")).
putstrln(f("bye")).