ruby入门_unless

unless,即,除非,如果不

相当于if not


var = true

if var
  puts "if"
end

unless !var
  puts "unless == !if"
end



你可能感兴趣的:(ruby入门_unless)