michael@0: /* michael@0: * Any copyright is dedicated to the Public Domain. michael@0: * http://creativecommons.org/licenses/publicdomain/ michael@0: */ michael@0: function range(n) michael@0: { michael@0: var i = 0; michael@0: while (i < n) michael@0: yield i++; michael@0: } michael@0: michael@0: [0 for (_ in range(Math.pow(2, 20)))]; michael@0: michael@0: reportCompare(true, true);