You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
344 B
25 lines
344 B
<html>
|
|
<head>
|
|
<title>Infinite loop</title>
|
|
<link rel="stylesheet" type="text/css" href="tst.css">
|
|
</head>
|
|
<body>
|
|
<h1>Infinite loop</h1>
|
|
<p>Before</p>
|
|
<noscript><p>Javascript is disabled</p></noscript>
|
|
<script>
|
|
|
|
function bar(x) { return (x/2) + 1; }
|
|
|
|
n=1;
|
|
while (n < 3) {
|
|
n = bar(n);
|
|
|
|
}
|
|
|
|
</script>
|
|
</script>
|
|
<p>Afterwards</p>
|
|
</body>
|
|
</html>
|