summaryrefslogtreecommitdiff
path: root/cli/bench/console.js
blob: 1d336fbbde84a7c9276a4d4c18928b283a55ff63 (plain)
1
2
3
4
5
6
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.

// deno-lint-ignore-file no-console

const count = 100000;
for (let i = 0; i < count; i++) console.log("Hello World");