We're a place where coders share, stay up-to-date and grow their careers.
Oh, alright.
shep = fn 0 -> "" n -> 1..n |> Stream.map(&("#{&1} sheep")) |> Enum.join("...") end IO.puts(shep.(0)) #
Oh, alright.