3
0
Fork 0
mirror of https://github.com/lubosz/overte.git synced 2025-07-03 08:30:14 +02:00
overte-lubosz/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);