diff --git a/test.ts b/test.ts index 5b6d755b..00b168ab 100644 --- a/test.ts +++ b/test.ts @@ -1,9 +1,8 @@ async function test_Function() { - return 1+1; + return 1 + 1; } for (let index = 0; index < 100; index++) { - await test_Function(); - const a = "test"; + await test_Function(); + const a = 'test'; } -