Bounded range syntax

This is to test the following syntax:


		var a = -1, b = 2, c = 3,
		x = [0 < a < 3],
		y = [1 < b < 5],
		z = [1 < c < 2];
	

If it works, the console should read x = 0, y = 2, z = 2.

Psst, look at the console.