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

7 lines
147 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
[ ( a b -- )
2dup ." a+b = " + . cr
2dup ." a-b = " - . cr
2dup ." a*b = " * . cr
2dup ." a/b = " / . ." remainder " mod . cr
] is mathops