Created
May 12, 2016 13:05
-
-
Save Nephos/96b76ddaf3e2924745b61c52c0afb51e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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