Skip to content

1.20.61

Compare
Choose a tag to compare
@andrew-johnson-4 andrew-johnson-4 released this 28 Feb 03:02
· 43 commits to main since this release
68d0754

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.