Created
January 29, 2015 15:06
-
-
Save kucaahbe/fab3d0fa55821600b266 to your computer and use it in GitHub Desktop.
Time and Space
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
# version 1 | |
class Space | |
end | |
class Time | |
def self.and smth | |
end | |
end | |
Time.and Space |
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
# version 2 | |
# changes: | |
# * infinity issues fixed | |
class Space | |
end | |
class Time | |
def self.and smth | |
-Float::INFINITY | |
end | |
end | |
Time.and Space |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment