From ea2df4b7d2d04047c6fef9324b56576a455287d7 Mon Sep 17 00:00:00 2001 From: Lars Brinkhoff Date: Sun, 27 Sep 2020 14:39:08 +0200 Subject: [PATCH] Hello world sample file for CLU. --- src/hello/hello.clu | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/hello/hello.clu diff --git a/src/hello/hello.clu b/src/hello/hello.clu new file mode 100644 index 00000000..52b77120 --- /dev/null +++ b/src/hello/hello.clu @@ -0,0 +1,5 @@ +% Hello world example for CLU. + +hello = proc() + file$puts (file$tyo(), "Hello CLU-less world!\n") +end