about summary refs log tree commit diff
path: root/users/wpcarro/scratch/facebook/reverse-words.py
blob: 5a38b828a346b85a103ba41d8d1509548053ad5b (plain) (blame)
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))