expressions in statements must only be executed for their side-effects

help me what is wrong?

function Update () {
  if (Input.GetKey ("escape"))
Application.Quit;
}

function Update ()
{
if (Input.GetKey (“escape”))
Application.Quit();
}

Application.Quit**()**;