Sh-Zh-7 / CMinus

💻 A naïve compilation principal course design.
Do What The F*ck You Want To Public License
2 stars 0 forks source link

[test] CMinus code example2. #19

Open Sh-Zh-7 opened 3 years ago

Sh-Zh-7 commented 3 years ago
int main()
{
    float a[10][2];
    int i;
    a[5, 3] = 1.5;
    if (a[1][2] == 0) i = 1 else i = 2;
}
github-actions[bot] commented 3 years ago

Compile failed. The error(s) is(are):

Error type B at Line 5: mismatched input ',' expecting ']'
Error type B at Line 6: mismatched input 'else' expecting ';'