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