Initial commit

This commit is contained in:
2023-03-24 15:48:54 +00:00
commit d77738eb38
26 changed files with 1957 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
package uk.ac.soton.comp1206;
public class SystemInfo {
public static String javaVersion() {
return System.getProperty("java.version");
}
public static String javafxVersion() {
return System.getProperty("javafx.version");
}
}