24 | * We are both programmers,
25 | * so I write some code to describe our stories.
26 | */
27 | Boy i = new Boy("Muyy");
28 | Girl u = new Gril("Poem");
29 | // Nov 2, 2017, I told you I love you.
30 | i.love(u);
31 | // Luckily, you accepted and became my girlfriend eversince.
32 | u.accepted();
33 | // Since then, I miss u every day.
34 | i.miss(u);
35 | // And take care of u and our love.
36 | i.takeCareOf(u);
37 | // You say that you won't be so easy to marry me.
38 | // So I keep waiting and I have confidence that you will.
39 | boolean isHesitate = true;
40 | while (isHesitate) {
41 | i.waitFor(u);
42 | // I think it is an important decision
43 | // and you should think it over.
44 | isHesitate = u.thinkOver();
45 | }
46 | // After a romantic wedding, we will live happily ever after.
47 | i.marry(u);
48 | i.liveHappilyWith(u);
49 |
59 |