Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: 1fd4af9325ed62a1e02ac30b3d1f9651e9eab1d6 (plain) (blame)
1
2
3
4
5
6
function main(args) {
		var b = true;
		var b2 = true;
		var b3 = b || b2;
 
}

Back to the top