sysy-data/functional_c/sy/11_add2.sy

9 lines
100 B
Plaintext

#include "sylib.h"
//test add
int main(){
int a, b;
a = 10;
b = -1;
return a + b;
}