Initial commit
This commit is contained in:
5
app/index.js
Normal file
5
app/index.js
Normal file
@ -0,0 +1,5 @@
|
||||
let i = 0;
|
||||
setInterval(() => {
|
||||
i++;
|
||||
console.log(`Hello, World! (#${i})`);
|
||||
}, 1000);
|
||||
Reference in New Issue
Block a user