LightAndLight / ipso

A functional scripting language.
https://ipso.dev
17 stars 1 forks source link

`join` builtin #140

Closed LightAndLight closed 2 years ago

LightAndLight commented 2 years ago

join : String -> Array String -> String

join ", " [] == ""
join ", " ["x"] == "x"
join ", " ["x", "y"] == "x, y"
join ", " ["x", "y", "z"] == "x, y, z"
LightAndLight commented 2 years ago

Actually, this issue doesn't fit into the work I was planning.