unary operators, + and -, which indicate negative and positive numbers : Math Operators « Language Basics « Ruby






unary operators, + and -, which indicate negative and positive numbers


puts +7 + -5
puts -20 + 32
puts -20 - +32
puts 20 * -8

 








Related examples in the same category

1.get acquainted with math operations in Ruby
2.Using Math Operators
3.A few of Ruby's assignment operators
4.Some of the operators have assignment shortcuts
5.methods such as div, modulo, divmod, quo, and remainder.
6.Division and Truncation
7.be careful when you use the div method
8.Abbreviated Assignment Operators
9.note Ruby does not have ++