sysy-data/functional_c/sy/42_empty_stmt.sy

7 lines
72 B
Plaintext
Raw Permalink Normal View History

2024-06-02 22:04:54 +08:00
#include "sylib.h"
2024-04-14 22:20:29 +08:00
int main() {
int a = 10;
;
return a * 2 + 1;
}