diff options
Diffstat (limited to 'tests/sources/0103_local.c')
-rw-r--r-- | tests/sources/0103_local.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/sources/0103_local.c b/tests/sources/0103_local.c new file mode 100644 index 0000000..c6683be --- /dev/null +++ b/tests/sources/0103_local.c @@ -0,0 +1,5 @@ +int x = 12; +{ + int y = 9; + print(x,y); +} |