RosettaCodeData/Task/Arithmetic-Integer/Dyalect/arithmetic-integer.dyalect
2023-07-01 13:44:08 -04:00

8 lines
161 B
Text

let a = 6
let b = 4
print("sum = \(a+b)")
print("difference = \(a-b)")
print("product = \(a*b)")
print("Integer quotient = \(a/b)")
print("Remainder = \(a%b)")