фикс бага с компиляцией
This commit is contained in:
2023-11-27 19:46:46 +03:00
parent 7be3f9ccda
commit 433070c15f
4 changed files with 13 additions and 11 deletions

View File

@@ -21,9 +21,11 @@ public enum LanguageName {
public String getDVMLink() {
switch (this) {
case fortran:
return "flink";
return "f";
//"flink";
case c:
return "clink";
return "c";
//"clink";
default:
return "";
}