From e1c81a88840eb7e08fb412e51a967c6b645855fa Mon Sep 17 00:00:00 2001 From: Barry Walsh Date: Fri, 21 Mar 2014 18:04:18 +0000 Subject: [PATCH] Sample file for .rebol Rebol extension --- samples/Rebol/hello-world.rebol | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 samples/Rebol/hello-world.rebol diff --git a/samples/Rebol/hello-world.rebol b/samples/Rebol/hello-world.rebol new file mode 100644 index 00000000..2358cfbf --- /dev/null +++ b/samples/Rebol/hello-world.rebol @@ -0,0 +1,9 @@ +Rebol [ + author: "Rebol user" +] + +hello: func [] [ + print "hello, world!" +] + +hello