From fcbf63e62c627deae76c1b8cb8c0876c536ed811 Mon Sep 17 00:00:00 2001 From: Jari Vetoniemi Date: Mon, 16 Mar 2020 18:49:26 +0900 Subject: Fresh start --- jni/ruby/benchmark/bm_so_count_words.rb | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 jni/ruby/benchmark/bm_so_count_words.rb (limited to 'jni/ruby/benchmark/bm_so_count_words.rb') diff --git a/jni/ruby/benchmark/bm_so_count_words.rb b/jni/ruby/benchmark/bm_so_count_words.rb new file mode 100644 index 0000000..65f6337 --- /dev/null +++ b/jni/ruby/benchmark/bm_so_count_words.rb @@ -0,0 +1,19 @@ +#!/usr/bin/ruby +# -*- mode: ruby -*- +# $Id: wc-ruby.code,v 1.4 2004/11/13 07:43:32 bfulgham Exp $ +# http://www.bagley.org/~doug/shootout/ +# with help from Paul Brannan + +input = open(File.join(File.dirname($0), 'wc.input'), 'rb') + +nl = nw = nc = 0 +while true + tmp = input.read(4096) or break + data = tmp << (input.gets || "") + nc += data.length + nl += data.count("\n") + ((data.strip! || data).tr!("\n", " ") || data).squeeze! + nw += data.count(" ") + 1 +end +# STDERR.puts "#{nl} #{nw} #{nc}" + -- cgit v1.2.3