3
0
Fork 0
mirror of https://thingvellir.net/git/overte synced 2025-03-27 23:52:03 +01:00
overte-thingvellir/examples/example/tests/test-includes/a.js
2015-09-10 09:06:56 -07:00

7 lines
94 B
JavaScript

// a.js:
Script.include('b.js');
if (a === undefined) {
a = 0;
}
a++;
print('script a:' + a);