RosettaCodeData/Task/Arithmetic-Integer/E/arithmetic-integer.e
Ingy döt Net 764da6cbbb CDE
2013-04-10 16:57:12 -07:00

8 lines
173 B
Text

def arithmetic(a :int, b :int) {
return `$\
Sum: ${a + b}
Difference: ${a - b}
Product: ${a * b}
Quotient: ${a // b}
Remainder: ${a % b}$\n`
}