Created
August 3, 2013 03:29
-
-
Save avanishgiri/6145045 to your computer and use it in GitHub Desktop.
stuff
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
class Integer | |
def printMySquare | |
print self * self | |
print "\t" | |
return self | |
end | |
end | |
puts 4.printMySquare |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
puts 4.printMySquare
-- inside the code for printMySquare, we print (4 * 4) and a tab
-- then we return self, which is 4
-- so now its,
puts 4
-- now we print 4