RosettaCodeData/Task/Interactive-programming/Elixir/interactive-programming-1.elixir

8 lines
366 B
Text
Raw Permalink Normal View History

2016-12-05 22:15:40 +01:00
iex(1)> f = fn str1,str2,sep -> [str1,"",str2] |> Enum.join(sep) end # Join list on separator
2015-11-18 06:14:39 +00:00
iex(2)> g = fn str1,str2,sep -> str1 <> sep <> sep <> str2 end # Or concatenate strings
iex(3)> defmodule JoinStrings do
...(3)> def f(str1,str2,sep), do: [str1,"",str2] |> Enum.join(sep)
...(3)> def g(str1,str2,sep), do: str1 <> sep <> sep <> str2
...(3)> end