#!/usr/bin/env kjscmd

// Shows you how to use multiple script files.

var a = ':-)';

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


