tvl-depot/users/wpcarro/scratch/facebook/reverse-words.py

9 lines
148 B
Python
Raw Normal View History

# reverse_word :: [Char] -> ()
def reverse_words(x):
pass
x = list("This is a test")
print(''.join(x))
reverse_words(x)
print(''.join(result))