RosettaCodeData/Task/Arithmetic-Integer/BASIC/arithmetic-integer-1.basic

8 lines
102 B
Text
Raw Normal View History

2013-04-10 15:42:53 -07:00
function math(a!, b!)
print a + b
print a - b
print a * b
print a / b
print a mod b
end function