From 8fc4fa26d228a7a834b648403f6948d0b759ef7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Kruli=C5=A1?= Date: Sun, 13 Oct 2019 11:22:48 +0200 Subject: [PATCH] Updated Runtime Environments (markdown) --- Runtime-Environments.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Runtime-Environments.md b/Runtime-Environments.md index c3eeea7..f0d7df9 100644 --- a/Runtime-Environments.md +++ b/Runtime-Environments.md @@ -42,6 +42,7 @@ The solutions of Go has to be located only in one package, the standard `main` e By default, we use a script that looks for a class with a `main` method and executes it for running Java programs. There has to be only one class containing `main` method, otherwise error will be observed. The executed script is named `javarun.java` and can be found in the [utils](https://github.com/ReCodEx/utils/blob/master/runners/java/javarun.java) repository. In tested solutions we use its byte-compiled counterpart `javarun.class`, so be aware of name collisions. +Please note that the solution source codes cannot use subdirectories. I.e., the whole source code structure has to be flat. This is specially limiting for Java since it enforces all classes to dwell in the default package. ## Pascal