RosettaCodeData/Task/Arithmetic-Integer/Toka/arithmetic-integer.toka

7 lines
147 B
Text
Raw Permalink Normal View History

2013-04-10 22:43:41 -07:00
[ ( a b -- )
2dup ." a+b = " + . cr
2dup ." a-b = " - . cr
2dup ." a*b = " * . cr
2dup ." a/b = " / . ." remainder " mod . cr
] is mathops