2024-compiler/tests/10_编译错误示例/10_my_lexical.txt

20 lines
157 B
Plaintext

int <KW>
a <IDN>
= <OP>
10 <INT>
void <KW>
main <IDN>
( <SE>
) <SE>
{ <SE>
int <KW>
b <IDN>
b <IDN>
= <OP>
2 <INT>
return <KW>
b <IDN>
- <OP>
a <IDN>
} <SE>