summaryrefslogtreecommitdiff
path: root/test.mat
blob: 71a04dd409bdc51fe24994a7865c4626a0bd08c8 (plain)
1
2
3
4
5
6
7
8
let a = 3
{
	a = 4;
	const bees = \a => a*2;
	let j = bees(3);
	a = j;
}
let g = a + 'aaaa';