2024-compiler/tests/01/01.txt

7 lines
70 B
Plaintext

int a = 3;
int b = 5;
void main(){
int a = 5;
return a + b;
}