Update README.md

This commit is contained in:
Attila Magyar 2021-06-19 21:35:24 +02:00 committed by GitHub
parent db3c0cd77b
commit 864d446b9f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
```