summaryrefslogtreecommitdiff
path: root/tests/test_conditional_5.tnsl
blob: 2c68c17adfdb6dd2e72d12199dcf87391689d054 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

/; main [int]

	/; if (true && false)
		return 0
	;; else if (false && true)
		return 1
	;; else if (false && false)
		return 2
	;/

	/; if (false || false)
		return 3
	;; else if (true || false)
		return 69
	;/

	return 4

;/