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