Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.util.Calendar;
import java.util.GregorianCalendar;

public class Main {

    public static void main(String[] args) {

        Calendar cal = new GregorianCalendar();
        System.out.println(cal.get(Calendar.MILLISECOND));

    }
}