Created
May 12, 2012 00:53
-
-
Save csalzman/2663416 to your computer and use it in GitHub Desktop.
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
module End | |
class End | |
def initialize | |
@end = 'end' | |
end | |
def end(end_end) | |
return @end | |
end | |
end | |
end | |
endend = End::End.new() | |
puts endend.end(:end) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment