Created
July 24, 2013 20:52
Revisions
-
There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ def isInt?(number) true if Integer(number) rescue false end isInt?("13") result = true if Integer("12") rescue false # true result = true if Integer("test") rescue false #false result = true if Float("test") rescue false #false result = true if Float(13.2) rescue false #true