michael@0: // Test using 'while' with 'continue' -- the most ancient, the most powerful, michael@0: // the most rare of all coding incantations. michael@0: michael@0: var i = 0; michael@0: while (i < 12) { michael@0: ++i; michael@0: continue; michael@0: } michael@0: assertEq(i, 12); michael@0: