Created
July 6, 2024 21:42
-
-
Save gavingmiller/0c3cf1bab0a540ef4d5d2b6e93ed6db4 to your computer and use it in GitHub Desktop.
show
This file contains 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
def show | |
puts Benchmark.measure { | |
method_1() | |
} | |
puts Benchmark.measure { | |
method_2() | |
} | |
puts Benchmark.measure { | |
method_3() | |
} | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment