/**
* 我们相遇于时光漫步的旅途,
* 从相知到相恋,即将步入婚姻的殿堂.
*/
Boy i = new Boy("Mr. Du");
Girl u = new Girl("Miss Ma");
// May 1, 2017, I meet you.
i.meet(u);
// May 20, 2017, I take the train to look for you and talk you i love you.
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);
// 好几个城市生活都留下了我们生活的轨迹.
// 我们也去过一些想去的地方旅行.
while (i && u) {
i.togetherWith(u);
// I feel that life is no longer difficult,
// Just simple and happy.
}
// We have had 5 happy years and will continue to do so forever!.
i.love(u);
i.liveHappilyWith(u);
Miss Ma, I have fallen in love with you for
Love u forever and ever.
- Mr. Du