1 2 3 4 5 6 7 8 9 10
function a(n) print(n) if n<=1 then return n end return a(n-1) end print("final:"..a(20))