Files
NodeTest/src/index.ts
Cyanoure f437c74634
All checks were successful
Build and Save Artifact / build (pull_request) Successful in 13s
Test commit
2024-09-15 17:19:02 +02:00

11 lines
185 B
TypeScript

import test from "./test";
export function startTest() {
console.log("Hello, World!");
let i: number = 0;
setInterval(() => {
i++;
test(i);
}, 1000);
}