Mirror of CollapseOS
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

17 líneas
444B

  1. Parameter Stack
  2. DROP a --
  3. DUP a -- a a
  4. ?DUP DUP if a is nonzero
  5. NIP a b -- b
  6. OVER a b -- a b a
  7. ROT a b c -- b c a
  8. SWAP a b -- b a
  9. TUCK a b -- b a b
  10. 2DROP a a --
  11. 2DUP a b -- a b a b
  12. 2OVER a b c d -- a b c d a b
  13. 2SWAP a b c d -- c d a b
  14. 'S Returns current stack pointer, not counting the
  15. push it's making right now. (cont.)