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
: countdown ( n -- )
begin
dup .
1- dup
0 <
dup .
1-
dup 0 <
until
drop ;