Hey, I think that the following function join should be included in the lists module. join(Sep, List) -> lists:foldl(fun(A, "") -> A; (A, Acc) -> Acc ++ Sep ++ A end, "", List). Hoan