mirror of
https://github.com/SlimeVR/SlimeVR-Server.git
synced 2026-04-05 18:01:56 +02:00
Co-authored-by: Hannah Lindrob <hannahlindrob@ourlook.com> Co-authored-by: Sapphire <imsapphire0@gmail.com>
9 lines
159 B
Java
9 lines
159 B
Java
public class JavaVersion {
|
|
|
|
public static void main(String[] args)
|
|
{
|
|
var version = Runtime.version().version().get(0);
|
|
System.out.println(version);
|
|
}
|
|
}
|