
Happy Birthday Simon
/**
* The SupremeRullerOfTheApparelyzedUniverse class implements an application that
* prints "Happy Birthday Simon" and a special birthday wish to standard output.
*/
class SupremeRullerOfTheApparelyzedUniverse {
public static void main(String[] args) {
System.out.println("Happy Birthday Simon");
System.out.println("Hope you and yours have a great day!");
System.out.println("============================");
System.out.println("May your...");
System.out.println("- servers never crash");
System.out.println("- chat room never hang");
System.out.println("- hard drives forever spin");
System.out.println("- RJ45 cable always be in a comfy receptacle");
}
}
Translated...
Happy Birthday Simon
Hope you and yours have a great day!
============================
May your...
- servers never crash
- chat room never hang
- hard drives forever spin
- RJ45 cable always find in a comfy receptacle
PS. Challenge to programmers, re-write the above Java class using you language of choice w/hash table if supported