performance
def hello(foo: nil, bar: nil)
end
10_000.times { hello(foo: 1, bar: 2) }
# Runtime => 10.354 msdef hello(options = {})
foo, bar = options[:foo], options[:bar]
end
10_000.times { hello(foo: 1, bar: 2) }
# Runtime => 5.064 msRuntime => 9.284 ms
```ruby
class Foo
def initialize(val)
@val = val
end
attr_reader :val
end
object = Foo.new("bar")
100_000.times { object.val }
# Runtime => 6.966 msLast updated