1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-15 05:44:58 +00:00
serenity/Libraries/LibJS/Tests/modulo-basic.js

8 lines
145 B
JavaScript

function assert(x) { if (!x) throw 1; }
try {
assert(10 % 3 === 1);
console.log("PASS");
} catch (e) {
console.log("FAIL: " + e);
}