5 lines
117 B
Text
5 lines
117 B
Text
|
|
local function add_n(n) return |x| -> n + x end
|
||
|
|
|
||
|
|
local adder = add_n(40)
|
||
|
|
print($"The answer to life is {adder(2)}.")
|