summaryrefslogtreecommitdiff
path: root/num_tok
diff options
context:
space:
mode:
Diffstat (limited to 'num_tok')
-rwxr-xr-xnum_tok8
1 files changed, 8 insertions, 0 deletions
diff --git a/num_tok b/num_tok
new file mode 100755
index 0000000..7cc500c
--- /dev/null
+++ b/num_tok
@@ -0,0 +1,8 @@
+#!/usr/bin/env ruby1.9.1
+
+STDIN.set_encoding('utf-8')
+
+while line = STDIN.gets
+ puts line.split.length
+end
+