Skip to main content
Deno 2 is finally here 🎉️
Learn more

deno_fizzbuzz

import { fizzbuzz } from "https://deno.land/x/fizzbuzz@1.0.0/mod.ts"

for (const str of fizzbuzz(100)) {
  console.log(str);
}