summaryrefslogtreecommitdiff
path: root/test/test.test
blob: 2ffe7432d00146d36a72543f71416833c89e7d67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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(test);