How to include script using relative path?
I have two scripts, main.jsl and dosomething.jsl that are next to each other in the same folder.Main script has this in it:relativePath = "./";
This dosomething does something all over the script, it's very handy to edit dosomething.jsl WHILE still running the main script.So, when I do that ...
absolutePath = "c:\Users\myUser\Scripts\";
dosomething = Expr(
Include( relativePath || "dosomething.jsl" )
);