summaryrefslogtreecommitdiffstats
path: root/test/test3.t
blob: 682f7076330989755f254b565a0d903e2a4a7d4a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
fun main[]
	a = 3
	b = 5
	if (a > b)
		c = 1
	else
		c = 0
	end
	@c
end