mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 06:13:07 +00:00
8 lines
146 B
Zig
8 lines
146 B
Zig
usingnamespace @import("b.zig");
|
|
|
|
pub const a_text = "OK\n";
|
|
|
|
pub fn ok() bool {
|
|
return @import("std").mem.eql(u8, @This().b_text, "OK\n");
|
|
}
|