From c971c14a83433dc6fdd5ead6d7224aa48babce04 Mon Sep 17 00:00:00 2001 From: Barry Walsh Date: Fri, 21 Mar 2014 18:07:16 +0000 Subject: [PATCH] Sample file for .r Rebol extension --- samples/Rebol/hello-world.r | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 samples/Rebol/hello-world.r diff --git a/samples/Rebol/hello-world.r b/samples/Rebol/hello-world.r new file mode 100644 index 00000000..4c1b7983 --- /dev/null +++ b/samples/Rebol/hello-world.r @@ -0,0 +1,5 @@ +REBOL [] +hello: func [] [ + print "hello, world!" +] +hello