Greetings all,
i created a sublime repl to run java code through sumblimetext based on instrucrions that i found here:
{
“cmd”: [“javac”, “$file_name”,"&&",“java”, “$file_base_name”],
“file_regex”: “^(…?):([0-9]):?([0-9]*)”,
“selector”: “source.java”,
“shell”: true
}
the problem is that a simple hello world is run sufficient quick,but bigger programs are too slow!
how can fix that problem?
i’m not familiar with regex…
java installation and are set up correctly and tested.
thanks in advanced!