From 0c23050eafd912af97c92e0f5231efa5797ef5d2 Mon Sep 17 00:00:00 2001 From: Barry Walsh Date: Fri, 21 Mar 2014 18:05:14 +0000 Subject: [PATCH] Sample file for .r2 Rebol extension --- samples/Rebol/hello-world.r2 | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 samples/Rebol/hello-world.r2 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