/**
* Today is your birthday.
* I'm a programmer,
* so I want to write some code to celebrate this day.
*/
Boy i = new Boy("sen");
Girl u = new Girl("July");
// JUL 23, 2018, I saw you for the first time.
i.meet(u);
// Luckily, July is your English name and seven is your lucky number.
u.luckily();
// Soon after, I will miss you often.
i.miss(u);
// And I want to take care of you.
i.takeCareOf(u);
// I want to be your boyfriend..
// I don't think you will refuse me.
boolean isHesitate = true;
while (isHesitate) {
i.waitFor(u);
// I think it is an important decision
// and you should think it over.
isHesitate = u.thinkOver();
}
// After you agree.
u.accepted();
i.liveHappilyWith(u);
July, I have been with you for
Happy Birthday!
- sen