diff options
author | HorseMD <alightedness@gmail.com> | 2014-11-13 23:50:54 +0000 |
---|---|---|
committer | HorseMD <alightedness@gmail.com> | 2014-11-13 23:50:54 +0000 |
commit | 11313c9c005be9979883ca866e4da9aeb3413091 (patch) | |
tree | 7d53bda02d1d29ed9734bb2232b89ff4e9561c7d | |
parent | e4229c618bfc5ad4c0ed1939322e698eb45546c8 (diff) |
Whoops, missed a return comment.
-rw-r--r-- | forth.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/forth.html.markdown b/forth.html.markdown index 5ffdfbfc..8a24dccc 100644 --- a/forth.html.markdown +++ b/forth.html.markdown @@ -21,7 +21,7 @@ Forth, but most of what is written here should work elsewhere. \ All programming in Forth is done by manipulating what's known as the parameter \ stack (more commonly just referred to as "the stack"). Typing: -5 2 3 56 76 23 65 +5 2 3 56 76 23 65 \ ok \ Makes those numbers get added to the stack, from left to right. .s \ <7> 5 2 3 56 76 23 65 ok |