planckforth/lib/core.fs
Koichi Nakamura 6f2a1f17ee minor fix
2021-12-04 06:26:35 +09:00

24 lines
472 B
Forth

\ planckforth -
\ Copyright (C) 2021 nineties
defined? roll [unless]
: roll ( wn ... w1 n -- w1 wn ... w2 )
dup 0<= if drop else swap >r 1- recurse r> swap then
;
[then]
\ Ignore test codes. lib/tester.fs will redefine this when
\ running tests.
: T{
begin
word throw
s" }T" streq if exit then
again
;
s" Invalid argument" exception constant INVALID-ARGUMENT
: check-argument ( f -- )
unless INVALID-ARGUMENT throw then
;