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

9 lines
135 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
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