diff --git a/examples/helloworld.lamb b/examples/helloworld.lamb new file mode 100644 index 0000000..34fdc05 --- /dev/null +++ b/examples/helloworld.lamb @@ -0,0 +1,4 @@ +hello(object) -> object + "!". +hello() -> "hello, " + hello("world"). + +putstrln(hello()). \ No newline at end of file