mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
4 lines
157 B
JavaScript
4 lines
157 B
JavaScript
|
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license.
|
||
|
const count = 100000;
|
||
|
for (let i = 0; i < count; i++) console.log("Hello World");
|