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