ramblings/oxygen/js-require/hello.js

7 lines
159 B
JavaScript
Raw Normal View History

2021-05-01 21:40:15 +00:00
require('hello.js');
require('./commons.js');
2021-05-01 22:02:46 +00:00
require('subdir/child.js');
2021-05-01 21:40:15 +00:00
2021-05-01 16:48:45 +00:00
hello = function (){
Packages.java.lang.System.out.println("Hello world.");
}