1
0
mirror of https://github.com/hsoft/collapseos.git synced 2024-09-21 23:58:46 +10:00
collapseos/blk/357

12 lines
367 B
Plaintext
Raw Normal View History

2020-05-26 03:22:26 +10:00
: _ ( a len -- n f )
OVER C@ ( a len c )
'-' = IF
1- SWAP 1+ SWAP ( a+1 len-1 ) _ 0 ROT ( f 0 n )
- SWAP EXIT ( 0-n f )
2020-05-26 03:22:26 +10:00
THEN ( a len )
0 SWAP ( len ) 0 DO ( a r )
OVER I + C@ ( a r c ) _pdacc ( a r f )
IF DROP 0 UNLOOP EXIT THEN LOOP ( a r )
NIP 1 ;
: (parsed) ( a -- n f ) DUP 1- C@ ( a l ) _ ;