Mega Code Archive

 
Categories / Ruby / Language Basics
 

The && operator means and

ruby = "nifty" programming = "fun" if ruby == "nifty" && programming == "fun"   puts "and" end