5 lines
81 B
Text
5 lines
81 B
Text
|
|
function addN(n::Number)::Function
|
||
|
|
adder(x::Number) = n + x
|
||
|
|
return adder
|
||
|
|
end
|