>>> Stream.fold Fold.toList $ Unicode.unwords $ Stream.fromList ["unwords", "this", "string"] "unwords this string"
unwords = S.unwords A.readNote that, in general
unwords . words /= id
unwords = Stream.interpose ' ' unwords = Stream.intercalate Unfold.fromList " "Pre-release