it would be nice if you could declare functions external in modules, letting you define a utility in the module that would logically call back into the "main" program. e.g.:
// Foo.lslm
$module ()
extern integer handler(string message);
doSomethingComplicated(list params) {
...
handle(something);
}
// MyScript.lpsp
$import Foo.lslm() my_;
integer my_handler(string m) {...
2009-10-15 20:15:13 UTC in Lsl Plus