From 4bec82a19e43f132626b82ffe410170836889f62 Mon Sep 17 00:00:00 2001 From: Barry Walsh Date: Fri, 21 Mar 2014 18:05:49 +0000 Subject: [PATCH] Sample file for .r3 Rebol extension --- samples/Rebol/hello-word.r3 | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 samples/Rebol/hello-word.r3 diff --git a/samples/Rebol/hello-word.r3 b/samples/Rebol/hello-word.r3 new file mode 100644 index 00000000..15e5fd1a --- /dev/null +++ b/samples/Rebol/hello-word.r3 @@ -0,0 +1,7 @@ +Rebol [] + +hello: func [] [ + print "hello, world!" +] + +hello