Lib 2

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

function fact (n)

if n <= 0 then
return 1
else
return n * fact(n-1)
end
end

function norm (x, y)


return math.sqrt(x^2 + y^2)
end

function twice (n)


return 2.0 * n
end

You might also like