summaryrefslogtreecommitdiff
path: root/scratch/refresh.lua
blob: c90f76f3b8bc5519601e01c0e8dae43959dce526 (plain)
1
2
3
4
5
6
7
8
local function pick_a_number_that_is_42()
    return 42
end

function return_42()
    local number = pick_a_number_that_is_42()
    return number
end