You have not declared a variable named pin13. If you like, you can declare such a variable:
byte pin13 = 13;
but that's not a very good variable name. Better would be something like LEDPin (if you have an LED connected to the pin).
Or if you are just trying to use the pin number directly in your sketch, do that:
void setup() {
// put your setup code here, to run once:
pinMode(13,OUTPUT);
}
void loop() {
// put your main code here, to run repeat:
digitalWrite(13,HIGH);
delay (2000);
digitalWrite(13,LOW);
delay (2000);
}