diff options
| author | Sean Corrales <scorrales@usft.com> | 2015-10-14 14:52:37 -0500 | 
|---|---|---|
| committer | Sean Corrales <scorrales@usft.com> | 2015-10-14 14:52:37 -0500 | 
| commit | fcc5086cfcac4e1efc365c16617aaf7ff9d86f80 (patch) | |
| tree | da683653842a5ae37177d191a51833f58e0b9a41 /forth.html.markdown | |
| parent | c357be714fe39c8c97e4d1ac12b3cdfb673d1e1e (diff) | |
| parent | 8ec133b29595b8dac963eafa63ab0c479e37a3c1 (diff) | |
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'forth.html.markdown')
| -rw-r--r-- | forth.html.markdown | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/forth.html.markdown b/forth.html.markdown index f7c0bf34..b4a5581b 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 ---------------------------- @@ -133,7 +133,7 @@ variable age    \ ok  age @ .    \ 21 ok  age ?      \ 21 ok -\ Constants are quite simiar, except we don't bother with memory addresses: +\ Constants are quite similar, except we don't bother with memory addresses:  100 constant WATER-BOILING-POINT    \ ok  WATER-BOILING-POINT .               \ 100 ok | 
