Greetings, I have the following list: ["asd",[["Flow","kalle"]],["Sub","F"]] I would like to flatten it to: ["asd","Flow","kalle","Sub","F"] lists:flatten/1 is too effective. It gives me: "asdFlowkalleSubF" Is there another flatten somewhere? bengt