← 返回首页
/**
* We are both SCUTers and masters,
* so I wrote some code to celebrate our first 520 anniversary.
*/
Boy i = new Boy("Jasonkay");
Girl u = new Girl("Lin Gu-ye");
// Sep 10, 2018, I met you in the Teacher's day first time.
i.meet(u);
// Ever since when, i fell in love with you.
i.fellInLoveWith(u);
// From then on, i tried sevaral times to chase you, but you all refused.
u.refuse(i);
// After so many time failures, finally, 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);
// There shall be so many difficulties along the way.
boolean hasDifficulty = true;
// But as long as we two all together, there would be no problem then.
if (isTogether(u, i)) {
hasDifficulty = false;
}
// Since the time we were together, my life became full of love.
Life life = new Life("Love");
// Let us be together forever and live happily ever after.
while (true) {
life.liveHappilyEveryday(i, u);
}
Lin Gu-ye, We have been together for
Love u forever and ever.
- Jasonkay