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.

16 lignes
415B

  1. ( Skip atom, considering special atom types. )
  2. : ASKIP ( a -- a+n )
  3. DUP @ ( a n )
  4. ( ?br or br or NUMBER )
  5. DUP <>{ 0x67 &= 0x53 |= 0x20 |= 0x24 |= <>}
  6. IF DROP 4 + EXIT THEN
  7. ( regular word )
  8. 0x22 = NOT IF 2+ EXIT THEN
  9. ( it's a lit, skip to null char )
  10. ( a )
  11. 1+ ( we skip by 2, but the loop below is pre-inc... )
  12. BEGIN 1+ DUP C@ NOT UNTIL
  13. ( skip null char )
  14. 1+
  15. ;