function power(base, exp)
    _If exp == 0 _Then
        return 1
    _Else
        return base * power(base, exp - 1)
    _End_If
end
_Print_Console("2 to the power of 5 is: " .. power(2, 5))