// Quick Intro
console.log(`
Hello, My name is Liuming Chen. Welcome to my site!
I am a software developer. And... yup! That's it!
`);
// A day of my life (most of the time).
(function simpleLife() {
eat();
drink("coffee");
write("codes");
watch("anime");
play("video games");
sleep();
simpleLife();
})();