Mirror of CollapseOS
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

17 rindas
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