blob: 0d2cc59076cc95493e9ea998ce5e206433038b17 [file] [log] [blame]
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta cobalt-jit="disable">
<title></title>
</head>
<body>
</body>
<script>
function add(x, y) {
return x + y;
}
for (var i = 0; i < 10001; i++) {
console.log(i + ": " + add(i, i+1));
}
window.close();
</script>
</html>