02-arithmetics.fth 197 B

1234567891011
  1. 2 2 .s
  2. + .s
  3. .
  4. 2 1 - .
  5. 7 3 mod .
  6. 3 4 + 5 * .
  7. 6 7 - 8 * 9 + .
  8. 2 negate .
  9. 3 negate negate 4 * 5 - .
  10. 7 3 /mod . . \ does 2 things -> puts 2 results on the stack! -> multiple return values are simple!