Skip to content

Instantly share code, notes, and snippets.

@jukbot
Created November 28, 2015 07:49
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 jukbot/9b6403d83f41856bd36c to your computer and use it in GitHub Desktop.
Save jukbot/9b6403d83f41856bd36c to your computer and use it in GitHub Desktop.
import java.util.Date;
class JukSimpleDate {
public static void main (String args[]) {
java.util.Date date = new java.util.Date();
int n = 100000000;
while(true) {
System.out.println(date.toString());
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment