learning-zig/lang/test_pass.zig

7 lines
113 B
Zig
Raw Permalink Normal View History

2024-12-05 05:22:34 +00:00
const std = @import("std");
const expect = std.testing.expect;
test "always succeeds" {
try expect(true);
}