fork download
  1. import java.time.Instant;
  2.  
  3. public class Main {
  4. public static void main(String[] args) {
  5. Instant now = Instant.now();
  6. System.out.println(now);
  7. }
  8. }
Success #stdin #stdout 0.07s 48724KB
stdin
Standard input is empty
stdout
2021-06-20T13:38:07.890993Z