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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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))