2016-04-26 11:18:22 -07:00

8 lines
94 B
JavaScript

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