Files
NodeTest/src/index.ts
Cyanoure fad9d4279b
All checks were successful
Build and Save Artifact / build (push) Successful in 14s
Test commit
2024-09-15 16:52:37 +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);
}