整数を評価するコンパイラ
code:sh
echo "整数を評価して返すだけのコンパイラ"
echo > test1.c
code:test1.c
int main() {
return 123;
}
code:sh
gcc test1.c