1 2 3 4 5 6 7 8
# reverse_word :: [Char] -> () def reverse_words(x): pass x = list("This is a test") print(''.join(x)) reverse_words(x) print(''.join(result))