zig/lib/std/math/big.zig
Andrew Kelley ed36dbbd9c
mv std/ lib/
that's all this commit does. further commits will fix cli flags and
such.

see #2221
2019-09-25 23:35:41 -04:00

8 lines
181 B
Zig

pub usingnamespace @import("big/int.zig");
pub usingnamespace @import("big/rational.zig");
test "math.big" {
_ = @import("big/int.zig");
_ = @import("big/rational.zig");
}