JavaDay
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Calendar; | |
public class JavaDay { | |
public static void main(String[] args) { | |
Calendar date = Calendar.getInstance(); | |
date.set(2012, 6, 28); | |
System.out.println(date.getTime() + " is Java Day, a day where everybody speaks in Java."); | |
System.out.println("Why? Just because we can.\n"); | |
System.out.println("Attendees:"); | |
for (String attendee : args) | |
System.out.println("<Person['" + attendee + "']>"); | |
} | |
public String dommeVraag() { | |
return "Programmeren kun je leren."; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment