hexagonal-sun / bic

A C interpreter and API explorer.
GNU General Public License v2.0
815 stars 36 forks source link

Comma operator not supported #14

Closed tavianator closed 5 years ago

tavianator commented 5 years ago
tavianator@superluminal $ cat foo.c
int main() {
    return (0, 1);
}
tavianator@superluminal $ ./src/bic foo.c
Parser Error: <stdin>:2 syntax error, unexpected ',', expecting ')'.
hexagonal-sun commented 5 years ago

Should now be fixed. Thanks for the report!