collapseos/blk/449

11 lines
174 B
Plaintext
Raw Normal View History

2020-04-25 21:54:07 -04:00
( returns negative value on error )
: _ ( c -- n )
( '0' is ASCII 48 )
48 -
2020-05-02 20:32:20 -04:00
DUP 0< ( bad ) OVER 2 < ( good ) OR IF EXIT THEN
2020-04-25 21:54:07 -04:00
( bad )
255 -
;