groovy tune

master
Martin Polanka 5 years ago
parent 8fd1be9d50
commit eb0a65ab8c

@ -72,7 +72,7 @@ Scala source codes are compiled to class files with `scalac` compiler and then e
Groovy source codes are compiled to class files with `groovyc` compiler and then executed with `java` runtime, with addition of `groovy-all.jar` standard dependency. Like Java, Groovy uses our [javarun](https://github.com/ReCodEx/utils/blob/master/runners/java/javarun.java) wrapper executor which finds `main` method and executes it.
Internally Groovy is executed with `java` JDK runtime and standard Groovy library is added to this execution. This library is called `groovy-all.jar` and has to reside in `/opt/groovy/lib/groovy-all.jar` unless the solution will not be executable. If Groovy standard library is not provided the execution will probably fail on loading some of the Groovy specific classes.
Internally Groovy is executed with `java` JDK runtime and standard Groovy library is added to the execution. The standard library is called `groovy-all.jar` and has to reside in `/opt/groovy/lib/groovy-all.jar` unless the solution will not be executable. If Groovy standard library is not provided the execution will probably fail on loading of some of the Groovy specific classes.
## Kotlin

Loading…
Cancel
Save