Session 21

s21problem1.lua

function countdown(n)
    while n > 0 do
        n = n - 1
    end
    print("Done")
end

-- call the function

s21problem2.lua

function forever()
    while true do
    end
end

-- call the function

s21problem3.lua

s21problem4.lua

s21problem5.lua

project5.lua

Last updated

Was this helpful?