Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save smerritt/334963 to your computer and use it in GitHub Desktop.
Save smerritt/334963 to your computer and use it in GitHub Desktop.
sam@workvm:~$ irb
irb(main):001:0> 2.6.floor
=> 26
irb(main):002:0> (2.6).floor
=> 26
irb(main):003:0> 2.6
=> 26.0
irb(main):004:0> 2.2
=> 22.0
irb(main):005:0> 2.2 - 1.1
=> 11.0
irb(main):006:0> 3.14.to_i
=> 314
irb(main):007:0>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment