Java tutorial
import java.time.Instant; public class Main { public static void main(String[] argv) { Instant timestamp = Instant.now(); System.out.println("What is value of this instant " + timestamp); } }