mirror of
https://github.com/zeroflag/fcl.git
synced 2025-01-11 20:01:10 +01:00
Update README.md
This commit is contained in:
parent
dd9aaa04de
commit
db3c0cd77b
1 changed files with 2 additions and 3 deletions
|
@ -33,11 +33,10 @@ For example:
|
|||
10 100 max . \ prints 100
|
||||
```
|
||||
|
||||
The else part is optional.
|
||||
The `else` part is optional.
|
||||
|
||||
```forth
|
||||
: abs ( n -- absn )
|
||||
dup 0< if -1 * then ;
|
||||
: abs ( n -- n ) dup 0< if -1 * then ;
|
||||
|
||||
-10 abs . \ prints 10
|
||||
```
|
||||
|
|
Loading…
Reference in a new issue