Skip to content

Instantly share code, notes, and snippets.

@christianwimmer
Created August 27, 2019 03:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save christianwimmer/0655a6050c3ca50a2c7531a608df2727 to your computer and use it in GitHub Desktop.
Save christianwimmer/0655a6050c3ca50a2c7531a608df2727 to your computer and use it in GitHub Desktop.
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