11

Year year = new Year(2017);
year.run();

Comments
  • 4
    I think you should run it on another thread so that it is not blocking the UI thread and you are able to run 2018 next year :-D
  • 1
    Got to get in on this pseudo code
    new Thread(new Year()).start();
  • 0
    @grolofson It's actually valid Java
  • 0
    Sort of.. same as mine it's missing classes a main and the like but yes I know.

    In my code I normally use
    Year y = new Year(2017);
    So I can have
    y.run();

    Just laziness lol
  • 0
    Fuck, again.
Add Comment