package org.graalvm.example; | |
import java.util.Date; | |
class HelloStartupTime { | |
public static void main(String args[]) { | |
System.out.println("Startup: " + Startup.TIME); | |
System.out.println("Now: " + new Date()); | |
} | |
} | |
class Startup { | |
static final Date TIME = new Date(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment