about summary refs log tree commit diff
path: root/users/wpcarro/scratch/facebook/reverse-words.py
diff options
context:
space:
mode:
Diffstat (limited to 'users/wpcarro/scratch/facebook/reverse-words.py')
-rw-r--r--users/wpcarro/scratch/facebook/reverse-words.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/users/wpcarro/scratch/facebook/reverse-words.py b/users/wpcarro/scratch/facebook/reverse-words.py
new file mode 100644
index 0000000000..5a38b828a3
--- /dev/null
+++ b/users/wpcarro/scratch/facebook/reverse-words.py
@@ -0,0 +1,8 @@
+# reverse_word :: [Char] -> ()
+def reverse_words(x):
+    pass
+
+x = list("This is a test")
+print(''.join(x))
+reverse_words(x)
+print(''.join(result))