diff --git a/samples/Rebol/hello-world.r2 b/samples/Rebol/hello-world.r2 new file mode 100644 index 00000000..93ff53bb --- /dev/null +++ b/samples/Rebol/hello-world.r2 @@ -0,0 +1,7 @@ +REBOL [] + +hello: func [] [ + print "hello, world!" +] + +hello