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
452B

  1. ( Increase loop counter and returns whether we should loop. )
  2. : _
  3. R> ( IP, keep for later )
  4. R> 1+ ( ip i+1 )
  5. DUP >R ( ip i )
  6. I' = ( ip f )
  7. SWAP >R ( f )
  8. ;
  9. ( One could think that we should have a sub word to avoid all
  10. these COMPILE, but we can't because otherwise it messes with
  11. the RS )
  12. : LOOP
  13. COMPILE _ COMPILE (?br)
  14. H@ - ,
  15. COMPILE R> COMPILE DROP COMPILE R> COMPILE DROP
  16. ; IMMEDIATE