1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-20 00:15:31 +00:00
elinks/test/ecmascript/infinite.html
2020-10-23 22:34:58 +02:00

8 lines
70 B
HTML

<script>
var a = 0;
while (true) {
a += 1;
a -= 1;
}
</script>