diff options
-rw-r--r-- | examples/hello_world.gorth | 1 | ||||
-rw-r--r-- | examples/seq10.gorth | 6 |
2 files changed, 4 insertions, 3 deletions
diff --git a/examples/hello_world.gorth b/examples/hello_world.gorth deleted file mode 100644 index 424cfa3..0000000 --- a/examples/hello_world.gorth +++ /dev/null @@ -1 +0,0 @@ -pushstr "Hello, World!" println diff --git a/examples/seq10.gorth b/examples/seq10.gorth index b37a326..e73743e 100644 --- a/examples/seq10.gorth +++ b/examples/seq10.gorth @@ -1,4 +1,6 @@ +# Print out numbers from 1 to 10 + 1 while dup 11 < do - dup . + dup dump 1 + -endloop +done |