if (logical expression) {
// code to execute if the expression is true
}
package{
import flash.display.Sprite;
publicclass Main extends Sprite{
public function Main(){
var weather:String = "rain";
if (weather == "rain") {
trace("bringUmbrella");
}
}
}
}