3
0
Fork 0
mirror of https://thingvellir.net/git/overte synced 2025-03-27 23:52:03 +01:00
overte-thingvellir/script-archive/example/tests/test-includes/start.js
2016-04-26 11:18:22 -07:00

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