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

8 lines
135 B
Text

local(a = 6, b = 4)
#a + #b // 10
#a - #b // 2
#a * #b // 24
#a / #b // 1
#a % #b // 2
math_pow(#a,#b) // 1296
math_pow(#b,#a) // 4096