This commit is contained in:
Geir Okkenhaug Jerstad 2024-12-11 11:20:42 +01:00
parent 2549653f2c
commit 905305ef0d
5 changed files with 10 additions and 5 deletions

2
ts/hello-world/index.js Normal file
View file

@ -0,0 +1,2 @@
console.log("Hello World!");
var age = 51;

2
ts/hello-world/index.ts Normal file
View file

@ -0,0 +1,2 @@
console.log("Hello World!")
let age: number = 51;