Mirror of CollapseOS
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

17 satır
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.)