Skip to content

Instantly share code, notes, and snippets.

@Comamoca
Created February 19, 2024 17:19
Show Gist options
  • Save Comamoca/a3a763d22362245845daca63e956e9d2 to your computer and use it in GitHub Desktop.
Save Comamoca/a3a763d22362245845daca63e956e9d2 to your computer and use it in GitHub Desktop.
const tipichapa = ["チピチピ", "チャパチャパ", "ドゥビ ドゥビ", "ダバ ダバ"]
const dubi = "マヒコミ ドゥビ ドゥビ\nブン ブン ブン ブン"
while (true) {
const word = Array.from({length: 4}, () => tipichapa[Math.floor(Math.random() * tipichapa.length)]).join("")
console.log(word)
if (word == tipichapa.join("")) {
break
}
}
console.log(dubi)
@Comamoca
Copy link
Author

Try below.

deno run https://gist.githubusercontent.com/Comamoca/a3a763d22362245845daca63e956e9d2/raw/98fcc2df3877e96d54c41bfe48f299751dd2d1fa/neko_meme.ts

tipichapa

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment