Booleans

To present boolean value, we have two keywords: true and false.

puts true     // true
puts false    // false

Last updated