Mirror of CollapseOS
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
160B

  1. : FILL ( a n b -- )
  2. SWAP 2 PICK + ( a b a+n ) ROT ( b a+n a ) DO ( b )
  3. DUP I C!
  4. LOOP DROP ;
  5. : ALLOT0 ( n -- ) H@ OVER 0 FILL ALLOT ;