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.

12 lines
168B

  1. : _mvln+ ( ln -- move ln 1 line further )
  2. DUP 14 > IF DROP EXIT THEN
  3. _bpos DUP 64 + 64 MOVE
  4. ;
  5. : U
  6. 15 EDPOS @ - 0 DO
  7. 14 I - _mvln+
  8. LOOP
  9. P
  10. ;