mirror of
https://github.com/nineties/planckforth
synced 2024-12-25 21:58:22 +01:00
Add abs
This commit is contained in:
parent
41f6ab0bca
commit
9054a17e1b
1 changed files with 3 additions and 1 deletions
|
@ -814,6 +814,8 @@ allot-cell : &find! [ ' L , , ] ; \ ( c-addr -- nt ) Throw exception at error
|
|||
: max 2dup > if drop else nip then ;
|
||||
: min 2dup < if drop else nip then ;
|
||||
|
||||
: abs dup 0< if negate then ;
|
||||
|
||||
\ === Multiline Comment ===
|
||||
|
||||
: '(' [ key ( ] literal ;
|
||||
|
@ -2424,7 +2426,7 @@ need-defined (read)
|
|||
catch throw success
|
||||
: ; create :noname does> variable constant
|
||||
' ['] compile [compile] literal
|
||||
+ - * div mod negate not and or xor invert within max min
|
||||
+ - * div mod negate not and or xor invert within max min abs
|
||||
< > <= >= = <> 0< 0> 0<= 0>= 0= 0<> 1+ 1-
|
||||
|
||||
true false
|
||||
|
|
Loading…
Reference in a new issue