/**
* Today, the 6th day of May, is your birthday.
* So I created a webpage to celebrate this special day.
*/
Girl u = new Girl("Aastha Solanki");
// May 5th, when the bell rang, your age increased
Date currentTime = new Date();
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String dateString = formatter.format(currentTime);
if( dateString.equals("2017-05-06 00:00:00") ){
u.age ++;
}
// My best wishes will be with you simultaneously.
new Thread (){
@Override
// Forever and ever. I wish
while(true){
// luckiness,
u.fortune ++;
// happiness,
u.happiness ++;
// and everything you wish can be achieved.
}.start()
// The last thing I wanna say, boring and ordinary, is:
System.out.println("Happy Birthday!");