mirror of
https://github.com/overte-org/overte.git
synced 2025-04-26 12:56:16 +02:00
5 lines
167 B
JavaScript
5 lines
167 B
JavaScript
// start.js:
|
|
var a, b;
|
|
print('initially: a:' + a + ' b:' + b);
|
|
Script.include(['a.js', '../test-includes/a.js', 'b.js', 'a.js']);
|
|
print('finally a:' + a + ' b:' + b);
|