summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xltok9
1 files changed, 9 insertions, 0 deletions
diff --git a/ltok b/ltok
new file mode 100755
index 0000000..c90823e
--- /dev/null
+++ b/ltok
@@ -0,0 +1,9 @@
+#!/usr/bin/ruby
+
+STDIN.set_encoding 'utf-8'
+STDOUT.set_encoding 'utf-8'
+
+while line = STDIN.gets
+ puts line.strip.split(/\s/).size
+end
+