Switch to Electron (#1747)

Co-authored-by: Hannah Lindrob <hannahlindrob@ourlook.com>
Co-authored-by: Sapphire <imsapphire0@gmail.com>
This commit is contained in:
lucas lelievre
2026-03-10 21:38:02 +01:00
committed by GitHub
parent 0236a05f26
commit a891203204
146 changed files with 5087 additions and 11034 deletions

View File

@@ -0,0 +1,8 @@
public class JavaVersion {
public static void main(String[] args)
{
var version = Runtime.version().version().get(0);
System.out.println(version);
}
}