Files
mysysy/test/01_add.sy
2025-06-22 20:00:03 +08:00

9 lines
82 B
Plaintext

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