puts true and false # 相当于 (puts true) and false
puts (true and false) #
puts false and true # 相当于 (puts false) and true
puts (false and true) # 相当于 puts (false and true)
puts true && false # 相当于 puts (true && false)
puts true & false # 相当于 puts (true & false)
结果
truefalse
false
false
false
false
&&的优先级高于&&
-----------------------------------------------