2024-01-01 14:58:21 -05:00
|
|
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2024-08-20 15:14:37 -04:00
|
|
|
|
|
|
|
// deno-lint-ignore-file no-console
|
|
|
|
|
2022-09-17 06:04:43 -04:00
|
|
|
const count = 100000;
|
|
|
|
for (let i = 0; i < count; i++) console.log("Hello World");
|