mirror of
https://github.com/denoland/deno.git
synced 2025-09-27 04:39:10 +00:00
9 lines
225 B
TypeScript
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);
|