Created
April 11, 2019 08:44
-
-
Save elcortez/54e89fe3cad4d52f5e61507184937f94 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
| def something_slow | |
| time = Time.now | |
| puts "I am doing something slow" | |
| yield | |
| puts "Elapsed time : #{Time.now - time}" | |
| end | |
| something_slow { sleep(2) } | |
| something_slow { sleep(1) } | |
| # time = Time.now | |
| # puts "I am doing something slow" | |
| # sleep(2) | |
| # puts "Elapsed time : #{Time.now - time}" | |
| # time = Time.now | |
| # puts "I am doing another thing slow" | |
| # sleep(3) | |
| # puts "Elapsed time : #{Time.now - time}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment