From 262ab75e61b761abe4d813852fb10a144010b32d Mon Sep 17 00:00:00 2001 From: darkf Date: Sun, 20 Oct 2013 17:41:22 -0700 Subject: [PATCH] add hello world example --- examples/helloworld.lamb | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 examples/helloworld.lamb 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