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