while(var > 200); <<<<<<<<<<<<<<<<<<< the ; is wrong remove it
{
Serial.println(var);
var++;
}
Since var starts at 0, the while block will not be executed until loop has been executed 200 times. At that point, the while loop becomes an endless loop, and stops the Arduino from printing to the serial port. Perhaps that IS what OP wanted.