I have a file in which I wrote some vars. I want to parse this variables on an runtime application which is opened with the JShell to this instance of Jshell.
FileWithVars.XYZ
float x = 5f;
String s = "TestString";
Currently I load this file with /o FileWithVars.XYZ in the jshell startup script But Now I want to do the same thing from the Application which is running in a Jshell.
Any Ideas how to archive that?
Kind Regards