summaryrefslogtreecommitdiffstats
path: root/kjsembed/docs/examples/multifile/multifile.js
blob: 03d7c10e94e8e5f3cc089b482114d753c2bbc31a (plain)
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env kjscmd

// Shows you how to use multiple script files.

var a = ':-)';

println( 'multifile: Starting...' );
load( 'otherfile.js' );
println( 'multifile: Ending, ' + a );