summaryrefslogtreecommitdiffstats
path: root/tests/modules/implementing-with-ext.slang
blob: 4e399df7d528c32dd8934c80a103f57d37501943 (plain)
1
2
3
4
5
6
7
8
9
implementing "mymodule.slang";

int helperFunction() { return 0; }

void main()
{
    int x = moduleFunction();
    int y = helperFunction();
}