about summary refs log tree commit diff
path: root/users/wpcarro/scratch/facebook/reverse-words.py
# reverse_word :: [Char] -> ()
def reverse_words(x):
    pass

x = list("This is a test")
print(''.join(x))
reverse_words(x)
print(''.join(result))