local variables

This commit is contained in:
pommicket 2022-02-12 12:03:00 -05:00
parent b69bd8be29
commit 0a14c8ca2a
4 changed files with 96 additions and 15 deletions

View file

@ -1,5 +1,7 @@
static int x = -2;
static char x = -2;
long main(int argc, char **argv) {
return x + 17.3;
int y = 38;
int z = y + x;
return z + x;
}