diff --git a/README.md b/README.md index f70881d..dba12d5 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,8 @@ For example: The `else` part is optional. ```forth -: abs ( n -- n ) dup 0< if -1 * then ; +: abs ( n -- n ) + dup 0 < if -1 * then ; -10 abs . \ prints 10 ```