Answers for "function return lua"

Lua
1

function return lua

function factorial(x)
  if x == 1 then
    return 1
  end
  return x * factorial(x-1)
end
Posted by: Guest on February-18-2021

Browse Popular Code Answers by Language