lib/rgot/benchmark_result.rb in rgot-1.2.0 vs lib/rgot/benchmark_result.rb in rgot-1.3.0

- old
+ new

@@ -1,8 +1,12 @@ # frozen_string_literal: true module Rgot class BenchmarkResult + # @dynamic n, t + attr_reader :n + attr_reader :t + def initialize(n:, t:) @n = n @t = t end