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