module Benchmark::Timing

def self.now

Get an object that represents now and can be converted to microseconds
def self.now
  Process.clock_gettime Process::CLOCK_MONOTONIC, :float_microsecond
end