Day of the week: Difference between revisions

→‎{{header|Python}}: removed the unlines function, as it was not actually used
(→‎{{header|Python}}: removed the unlines function, as it was not actually used)
Line 3,591:
)
 
 
# unlines :: [String] -> String
def unlines(xs):
'''A single string formed by the intercalation
of a list of strings with the newline character.
'''
return '\n'.join(xs)