Mirror of CollapseOS
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

17 lignes
430B

  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 2R> COMPILE 2DROP
  16. ; IMMEDIATE