RosettaCodeData/Task/Arithmetic-Integer/BASIC/arithmetic-integer.basic
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

7 lines
102 B
Text

function math(a!, b!)
print a + b
print a - b
print a * b
print a / b
print a mod b
end function