zig/std/math/big.zig

8 lines
159 B
Zig
Raw Normal View History

2019-03-03 05:46:04 +08:00
pub use @import("big/int.zig");
2019-03-26 14:53:02 +08:00
pub use @import("big/rational.zig");
2019-03-03 05:46:04 +08:00
test "math.big" {
_ = @import("big/int.zig");
2019-03-26 14:53:02 +08:00
_ = @import("big/rational.zig");
2019-03-03 05:46:04 +08:00
}