mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
38555a6a0f
Reland https://github.com/denoland/deno/pull/16777 The codegen is disabled in async ops and when fallback to slow call is possible (return type is a Result) to avoid hitting this V8 bug: https://github.com/denoland/deno/issues/17159
3 lines
157 B
JavaScript
3 lines
157 B
JavaScript
// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license.
|
|
const count = 100000;
|
|
for (let i = 0; i < count; i++) console.log("Hello World");
|