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