mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-07 01:43:30 +02:00
7 lines
94 B
JavaScript
7 lines
94 B
JavaScript
// a.js:
|
|
Script.include('b.js');
|
|
if (a === undefined) {
|
|
a = 0;
|
|
}
|
|
a++;
|
|
print('script a:' + a);
|