diff options
author | ven <vendethiel@hotmail.fr> | 2015-10-09 22:17:35 +0200 |
---|---|---|
committer | ven <vendethiel@hotmail.fr> | 2015-10-09 22:17:35 +0200 |
commit | a5b9afc897afb3b7b6894672ad945970a373834a (patch) | |
tree | 2e7ac5aa9a8ce3d6e5743fd766184b5921b24475 | |
parent | ef40704f9b66ae85d7a8a6853abbbf8810af3b90 (diff) | |
parent | b1e4e89b843448058b5a4f076e0b6e0d3c51dfcb (diff) |
Merge pull request #1430 from zlarsen/fixes-forth-typo
[Forth/en] fixes forth typo
-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 ---------------------------- |