1.20.61
Features:
- C declarator parsing
- C declarator compilation
Note
int x = 5, y, z = 6;
will be rewritten as
int x = 5;
int y;
int z = 6;
because it is somewhat annoying to track. This should be equivalent in C according to ANSI, but if it is a problem we can come back.