Erythro/tests/locals
Curle 39ee1b6028
Working local variables.
Next up: multiple function parameters..
2020-11-30 20:01:00 +00:00

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);
}