summaryrefslogtreecommitdiff
path: root/num-tok
diff options
context:
space:
mode:
Diffstat (limited to 'num-tok')
-rwxr-xr-xnum-tok9
1 files changed, 9 insertions, 0 deletions
diff --git a/num-tok b/num-tok
new file mode 100755
index 0000000..56cbae9
--- /dev/null
+++ b/num-tok
@@ -0,0 +1,9 @@
+#!/usr/bin/env ruby
+
+STDIN.set_encoding 'utf-8'
+STDOUT.set_encoding 'utf-8'
+
+while line = STDIN.gets
+ puts line.strip.split.length
+end
+