package{
import flash.display.Sprite;
public class Main extends Sprite{
public function Main(){
var weather:String = "rain";
if (weather != "sun") { trace("bringUmbrella"); }
if (!(weather == "sun")) { trace("bringUmbrella"); }
}
}
}