Guest User

Untitled

a guest
Jun 23rd, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. Julius:~ caius$ irb
  2. >> "1.2" < "1.2.1"
  3. => true
  4. >> "1.2" > "1.2.1"
  5. => false
  6. >> "1.2" > "1.3"
  7. => false
  8. >> "1.2.1" > "1.2"
  9. => true
  10. >> "1.2" > "1.1.1"
  11. => true
  12. >> "1.2.1" > "1.1"
  13. => true
Add Comment
Please, Sign In to add comment