From 65cb62e9c6b38dcbef28dfba5bf210b3d102eef7 Mon Sep 17 00:00:00 2001 From: mio Date: Fri, 22 Sep 2023 16:30:09 +0000 Subject: [PATCH] Add hearts --- thirdparty/our/{coffeefact => }/coffeefact.nim | 0 thirdparty/our/hearts.nim | 12 ++++++++++++ 2 files changed, 12 insertions(+) rename thirdparty/our/{coffeefact => }/coffeefact.nim (100%) create mode 100644 thirdparty/our/hearts.nim diff --git a/thirdparty/our/coffeefact/coffeefact.nim b/thirdparty/our/coffeefact.nim similarity index 100% rename from thirdparty/our/coffeefact/coffeefact.nim rename to thirdparty/our/coffeefact.nim diff --git a/thirdparty/our/hearts.nim b/thirdparty/our/hearts.nim new file mode 100644 index 0000000..21159f9 --- /dev/null +++ b/thirdparty/our/hearts.nim @@ -0,0 +1,12 @@ +import random + + +let hearts = @[ + "♥ ❤♥ ♥ ❤♥ ♥❤ ♥", + "💟💟💟💟💟💟", + "💖💗💕💞💝"❤️, + "❤️ 🧡 💛 💚 💙 💜" + ] + +randomize() +echo sample(hearts)