Language Flash ActionScript

package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){
        var weather:String;
        
        weather = weather ? weather : "partly cloudy";
        
        trace(weather);
    }
  }
}