/**
* 当我第一眼见到你,就深深的思恋上了你!
* 所以我用程序员的技术来表达我对你的爱!
*/
Boy i = new Boy("Nie");
Girl u = new Girl("Liu");
// Sept 7, 2018, I told you I love you.
i.love(u);
// Luckily, you accepted and became my girlfriend eversince.
u.accepted();
// Since then, I miss you every day.
i.miss(u);
// And take care of you and our love.
i.takeCareOf(u);
// You say that you won't be so easy to marry me.
// So I keep waiting and I have confidence that you will.
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 a romantic wedding, we will live happily ever after.
i.marry(u);
i.liveHappilyWith(u);
Liu, We're already in love:
Love you forever and ever.
- Nie