icky-alerts
Version:
Provides a `cry` function that runs around and makes you cry.
27 lines (26 loc) • 1.25 kB
JavaScript
module.exports.cry = () => {
console.log("We're no strangers to love");
console.log("You know the rules and so do I");
console.log("A full commitment's what I'm thinking of");
console.log("You wouldn't get this from any other guy");
console.log("I just wanna tell you how I'm feeling");
console.log("Gotta make you understand");
console.log("Never gonna give you up");
console.log("Never gonna let you down");
console.log("Never gonna run around and desert you");
console.log("Never gonna make you cry");
console.log("Never gonna say goodbye");
console.log("Never gonna tell a lie and hurt you");
console.log("We've known each other for so long");
console.log("Your heart's been aching but you're too shy to say it");
console.log("Inside we both know what's been going on");
console.log("We know the game and we're gonna play it");
console.log("And if you ask me how I'm feeling");
console.log("Don't tell me you're too blind to see");
console.log("Never gonna give you up");
console.log("Never gonna let you down");
console.log("Never gonna run around and desert you");
console.log("Never gonna make you cry");
console.log("Never gonna say goodbye");
console.log("Never gonna tell a lie and hurt you");
};