archivesOfToyLang/tshunhue/遞歸下降分析器/LLVM/a.cpp

9 lines
109 B
C++
Raw Permalink Normal View History

2023-09-30 22:30:08 +08:00
#include <iostream>
using namespace std;
int main(void){
int a = 12;
int b = a + (a * 3);
return b;
}