mirror of
https://github.com/RGBCube/serenity
synced 2025-05-16 02:44:58 +00:00
7 lines
116 B
JavaScript
7 lines
116 B
JavaScript
function assert(x) { if (!x) throw 1; }
|
|
|
|
try {
|
|
assert(Math.sqrt(9) === 3);
|
|
console.log("PASS");
|
|
} catch {
|
|
}
|