RosettaCodeData/Task/Exponentiation-operator/AutoHotkey/exponentiation-operator.ahk

10 lines
87 B
AutoHotkey
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
MsgBox % Pow(5,3)
MsgBox % Pow(2.5,4)
Pow(x, n){
r:=1
loop %n%
r *= x
return r
}