Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
[blue]master #[/blue] cat js1.js
load('js2.js')
foo()
[blue]master #[/blue] cat js2.js
function foo()
{
print('bar')
}
[blue]master #[/blue] js js1.js
bar
[blue]master #[/blue] jsc js1.js
bar
[blue]master #[/blue] cat js1b.js
foons=imports.js2
foons.foo()
[blue]master #[/blue] seed js1b.js
bar
Almost certainly not. For features allowed in an embedded interpreter you must read its documentation. Generic advices usually will not help.bthale said:Will the load() method work?