mirror of
https://github.com/bytecodealliance/wasm-micro-runtime.git
synced 2025-07-15 08:48:33 +00:00
8 lines
116 B
Lua
8 lines
116 B
Lua
function power(n)
|
|
local start=7
|
|
for x=0,(n-1) do
|
|
start=start*(start+1)
|
|
end
|
|
return start
|
|
end
|