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.

14 lines
250B

  1. : .2 DUP 10 < IF SPC THEN . ;
  2. : EOL? ( c -- f ) DUP 0xd = SWAP NOT OR ;
  3. : LIST
  4. BLK@
  5. 16 0 DO
  6. I 1+ .2 SPC
  7. 64 I * BLK( + DUP 64 + SWAP DO
  8. I C@ DUP EOL? IF DROP LEAVE ELSE EMIT THEN
  9. LOOP
  10. NL
  11. LOOP
  12. ;