Problem
You have JSL that can be used in more than one project, with minor changes, and you want to keep one copy to make it easier to maintain.
Solution
Use a separate file and include it into a main program. Use namespaces to keep variables isolated from other modules. Build the namespaces so the main program can add customizations.
example = New Namespace( "example" );
example:aaa = 1;
example:uuu = Function( {p}, Return( p ) );
example:fff = Function( {p},
example:aaa += 1;
Return( example:uuu( p ) * example:aaa );
);
Include( "example.jsl" );
example:uuu = Function( {p},
Return( Sqrt( p ) )
);
p = example:fff( 16 );
q = example:fff( 9 );
r = example:fff( 4 );
Show( p, q, r );
Discussion
You might want to add an example:init( parameters ) function that you call after the include to do one time setup. Or, if there are no parameters, you can do the one time setup in the example.jsl file.
See Also
Scripting index describes several additional parameters.