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.
23 lines
416 B
23 lines
416 B
<html>
|
|
<head>
|
|
<title>Infinite recursion</title>
|
|
<link rel="stylesheet" type="text/css" href="tst.css">
|
|
</head>
|
|
<body>
|
|
<h1>Infinite recursion</h1>
|
|
<p>Before</p>
|
|
<noscript><p>Javascript is disabled</p></noscript>
|
|
<script>
|
|
|
|
function it_keeps_going_and_going_and_going(i) {
|
|
|
|
return it_keeps_going_and_going_and_going(i+1);
|
|
}
|
|
|
|
it_keeps_going_and_going_and_going(1)
|
|
</script>
|
|
</script>
|
|
<p>Afterwards</p>
|
|
</body>
|
|
</html>
|