https://github.com/jekyll/jekyll
Raw File
Tip revision: 6e208e89e68285e1f208e1bf54bd6dd9a15f7d02 authored by Parker Moore on 18 April 2016, 21:28:21 UTC
Release :gem: 3.1.3
Tip revision: 6e208e8
sequential-assignment
require 'benchmark/ips'

Benchmark.ips do |x|
  x.report('parallel assignment') do
    a, b = 1, 2
  end
  x.report('multi-line assignment') do
    a = 1
    b = 2
  end
end
back to top