diff options
author | HorseMD <alightedness@gmail.com> | 2014-11-13 23:16:26 +0000 |
---|---|---|
committer | HorseMD <alightedness@gmail.com> | 2014-11-13 23:16:26 +0000 |
commit | edba1b39c8dee9f383b4b1dd1732e2b1afc55a40 (patch) | |
tree | c9b068c4e4f35557f4181f22522b77befd75a417 /forth.html.markdown | |
parent | 879da6be51557b1acba811954bc341afba502edd (diff) |
Add a few misc ideas to section Final Notes.
Diffstat (limited to 'forth.html.markdown')
-rw-r--r-- | forth.html.markdown | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/forth.html.markdown b/forth.html.markdown index 9c95f66b..aec74333 100644 --- a/forth.html.markdown +++ b/forth.html.markdown @@ -202,11 +202,18 @@ myfloatingvar f@ f. \ 4.4 ok \ --------------------------------- Final Notes -------------------------------- -\ bye +\ Loading Forth files: +s" forthfile.fs" included + +\ If you find yourself wanting to clear the stack, typing something that's not +\ a defined word or a number will work. + +\ `bye` closes gforth. ``` ##Ready For More? * [Starting Forth](http://www.forth.com/starting-forth/) +* [Simple Forth](http://www.murphywong.net/hello/simple.htm) * [Thinking Forth](http://thinking-forth.sourceforge.net/) |