From eb0a65ab8c62b6b154bd6e52bf2aeb3b694061ef Mon Sep 17 00:00:00 2001 From: Martin Polanka Date: Wed, 26 Feb 2020 13:41:41 +0100 Subject: [PATCH] groovy tune --- Runtime-Environments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Runtime-Environments.md b/Runtime-Environments.md index 11fb52d..936c214 100644 --- a/Runtime-Environments.md +++ b/Runtime-Environments.md @@ -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