Adds System and Steady clocks to mruby akin to std::chrono from c++11
Chrono::Steady.now or Chrono.steady # returns a monotonic increasing timestamp, usefull for BenchmarkingChrono::System.now or Chrono.system # returns the current System TimeThe return values are Ruby Floats.
You need a c++11 compatible c++ compiler.