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

8 lines
102 B
Text
Raw Permalink Normal View History

2019-09-12 10:33:56 -07:00
function math(a!, b!)
print a + b
print a - b
print a * b
print a / b
print a mod b
end function