Files
mysysy/test/01_add.sy
2025-02-27 23:14:53 +08:00

13 lines
129 B
Plaintext

//test add
int main(){
int a, b;
float d;
a = 10;
b = 2;
int c = a;
d = 1.1 ;
return a + b + c;
}