RosettaCodeData/Task/Arithmetic-Integer/Lasso/arithmetic-integer.lasso

9 lines
135 B
Plaintext

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