RosettaCodeData/Task/Exponentiation-operator/AutoHotkey/exponentiation-operator.ahk
2023-07-01 13:44:08 -04:00

9 lines
87 B
AutoHotkey

MsgBox % Pow(5,3)
MsgBox % Pow(2.5,4)
Pow(x, n){
r:=1
loop %n%
r *= x
return r
}