Comparison Operators and Expressions : Comparison Operators « Language Basics « Ruby
- Ruby
- Language Basics
- Comparison Operators
Comparison Operators and Expressions
age = 10
puts "You're too young to use this system" if age < 18
Related examples in the same category