From f09f5083240cbfaafdc01e109bf4a8402e442318 Mon Sep 17 00:00:00 2001 From: Ed Braaten Date: Mon, 4 May 2015 19:51:54 -0700 Subject: [PATCH] Initial commit of sample Hello Forth World script. --- forth/hello.fs | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 forth/hello.fs diff --git a/forth/hello.fs b/forth/hello.fs new file mode 100755 index 0000000..f5118ef --- /dev/null +++ b/forth/hello.fs @@ -0,0 +1,7 @@ +#! /usr/bin/gforth +\ +\ Sample Hello World! Forth script... +\ + +.( Hello Forth World! ) cr +bye