const henshin: integer = 2; // comment // next comment var ply: string = "cool!"; ply = "way cooler!!"; const new: integer = henshin * 5 + 10; const test: integer = 1 + 1; function main(input: string): void { const hello: string = "world!"; const bye: string = "bye!"; return hello; } main(input = "hello!"); const array: [integer][3] = [1, 2, 3]; const map: [string][string or integer] = [ "first": 1, "second": "two", "third": "3", "fourth": 4, ];