Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

public class Main {

    public static void main(String[] args) {

        // prints the name of the system property
        System.out.println(System.getProperty("user.dir"));

        // prints the name of the Operating System
        System.out.println(System.getProperty("os.name"));

        // prints Java Runtime Version
        System.out.println(System.getProperty("java.runtime.version"));
    }
}