lamb/examples/hibye.lamb
2013-10-23 15:39:01 -07:00

7 lines
128 B
Text

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