RosettaCodeData/Task/Nested-function/Julia/nested-function.julia

14 lines
265 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
function makelist(sep::String)
cnt = 1
function makeitem(item::String)
rst = string(cnt, sep, item, '\n')
cnt += 1
return rst
end
return makeitem("first") * makeitem("second") * makeitem("third")
end
print(makelist(". "))