about summary refs log tree commit diff
path: root/examples/2.src
blob: a25bea5b5cbc9add82fabd46644ed7efd3bdc2dc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
let main = () => {
	let test = 1922;

	let uwu = test;

	print(uwu); /* <- This is what triggers the problem */

	return 0;
};

/* TODO */