Last active
February 25, 2017 09:47
-
-
Save steverob/1c7679518d0b1a40b5707ee4f0da398d to your computer and use it in GitHub Desktop.
Simple Ruby Code
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
class HeavyWorker | |
def work | |
500.times {|i| i.times {} } | |
more_work | |
end | |
def more_work | |
500.times {|i| i.times {} } | |
end | |
end |
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
class LightWorker | |
def work | |
500.times {|i| i.times {} } | |
end | |
end |
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
LightWorker.new.work | |
HeavyWorker.new.work |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment