diff options
author | zlarsen <zlarsen@dmail.dixie.edu> | 2015-10-09 13:59:25 -0600 |
---|---|---|
committer | zlarsen <zlarsen@dmail.dixie.edu> | 2015-10-09 13:59:25 -0600 |
commit | b1e4e89b843448058b5a4f076e0b6e0d3c51dfcb (patch) | |
tree | a8adf01b574cb4e51a7fd52a87ea6b9b4c628096 /forth.html.markdown | |
parent | 0d0c495c701acc77047df138e169e7cc7ece5f97 (diff) |
fixes forth typo
changes util to until
Diffstat (limited to 'forth.html.markdown')
-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 f7c0bf34..1db85bf0 100644 --- a/forth.html.markdown +++ b/forth.html.markdown @@ -117,7 +117,7 @@ one-to-12 \ 0 1 2 3 4 5 6 7 8 9 10 11 12 ok : threes ( n n -- ) ?do i . 3 +loop ; \ ok 15 0 threes \ 0 3 6 9 12 ok -\ Indefinite loops with `begin` <stuff to do> <flag> `unil`: +\ Indefinite loops with `begin` <stuff to do> <flag> `until`: : death ( -- ) begin ." Are we there yet?" 0 until ; \ ok \ ---------------------------- Variables and Memory ---------------------------- |