deno/tests/specs/compile/fallback/setup.ts

9 lines
225 B
TypeScript

let fileText = "let myVar = 0;\n";
for (var i = 0; i < 8192; i++) {
fileText += "myVar += 1\n";
}
fileText += "console.log(myVar); // make this line longer with a comment\n";
Deno.writeTextFileSync("main.ts", fileText);