import assert from "node:assert";
import test from "node:test";

test("2と2の和は4", () => {
  assert.strictEqual(2 + 2, 4);
});