/**
* We met in 2005 and fell in love at end of 2007
* now, let's write down something to record our love
*/
Boy i = new Boy("JackyShen");
Girl u = new Girl("JuliaJiang");
// On Dec 20, 2007, we made our first date
i.love(u);
// Luckily, you accepted and became my girlfriend eversince
u.accepted();
// Since then, I miss u every day
i.miss(u);
// And take care of u 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
// And on Dec. 24, 2008, I proposed to you
boolean isMarried = false;
while (! isMarried) {
i.proposeTo(u);
boolean isHesitate = true;
while (isHesitate) {
i.waitFor(u);
// I think it is an important decision
// and you should think it over
isHesitate = u.thinkOver();
}
// Then we get married on Feb. 14, 2009
isMarried = true;
}
// After a non-romantic wedding, we live happily ever after
i.marry(u);
i.liveHappilyWith(u);
Now, we have been married for
Love u forever and ever.
- JackyShen