Move some Forth words to separate 'bootstrap.asm' file
[rrq/jonasforth.git] / example.f
index 2443f3264f6d852188f7249cfc1555b4f0539f84..41993d73ba877de3f7c7c72491ecee6318a43d80 100644 (file)
--- a/example.f
+++ b/example.f
@@ -1,3 +1,6 @@
+( vim: syntax=forth
+)
+
 : FIB ( n -- Fn )
   0 1                            ( n a b )
   0                              ( n a b i )
@@ -20,6 +23,6 @@ HELLO
 
 S" 10 FIB = " TELL
 10 FIB .U
-S (Expected: 59)" TELL NEWLINE
+SPACE S" (Expected: 59)" TELL NEWLINE
 
 TERMINATE