Skip to content

Instantly share code, notes, and snippets.

@ybur-yug
Created July 4, 2015 19:47
Show Gist options
  • Save ybur-yug/06d23f34459f3eba2769 to your computer and use it in GitHub Desktop.
Save ybur-yug/06d23f34459f3eba2769 to your computer and use it in GitHub Desktop.
$ irb
2.2.1 :001 > 1.to_f
 => 1.0 
2.2.1 :002 > 1.0.to_i
 => 1 
2.2.1 :003 > 'i fear weasels'.to_f
 => 0.0 
2.2.1 :004 > 'i fear weasels'.to_i
 => 0
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment