Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.text.DateFormat;

public class Main {
    public static void main(String args[]) {
        DateFormat df1 = DateFormat.getDateInstance();

        System.out.println(df1.clone().equals(df1));
    }
}