overte/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);