Update README.md

This commit is contained in:
Attila Magyar 2021-06-20 13:33:59 +02:00 committed by GitHub
parent fcdb9cc11b
commit 1e76950dc7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -89,9 +89,9 @@ For example:
```forth ```forth
: countdown ( n -- ) : countdown ( n -- )
begin begin
dup . dup .
1- dup 1-
0 < dup 0 <
until until
drop ; drop ;