1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-06-15 23:35:34 +00:00

[assert] Begin

This commit is contained in:
Witold Filipczyk 2024-04-12 16:02:38 +02:00
parent 86b621966e
commit 298d4cb206

View File

@ -0,0 +1,6 @@
<script>
console.error("console.assert.html");
console.assert(0 % 2 === 0, "O is not even");
console.assert(1 % 2 === 0, "1 is not even");
console.exit(0);
</script>