Test cases

- Updated to show use of extern variables
This commit is contained in:
Tristan B. Velloza Kildaire 2024-04-01 22:15:58 +02:00
parent e41c3a8d88
commit 92c464a8ab
2 changed files with 3 additions and 1 deletions

View File

@ -2,6 +2,8 @@ module a;
import niks.c, b;
public ubyte j = 0;
int ident(int i)
{
c.k();

View File

@ -4,5 +4,5 @@ import a;
void k()
{
a.j = a.j + 2;
}