Erythro/tests/old/locals

12 lines
145 B
Plaintext

int a; int b; int c;
int :: main()
{
char z; int y; int x;
x= 10; y= 20; z= 30;
a= 5; b= 15; c= 25;
PrintInteger(y);
return(0);
}