Mirror of CollapseOS
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
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.)