Skip to content

Instantly share code, notes, and snippets.

@Nephos
Created May 12, 2016 13:05
Show Gist options
  • Save Nephos/96b76ddaf3e2924745b61c52c0afb51e to your computer and use it in GitHub Desktop.
Save Nephos/96b76ddaf3e2924745b61c52c0afb51e to your computer and use it in GitHub Desktop.
require "./bench1_c/*"
module Bench1C
# TODO Put your code here
def self.incr : UInt64
a = 0_u64
(0...999999999).each do |i|
a = a + 1
end
a
end
end
puts Bench1C.incr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment