Skip to content

Commit 4885420

Browse files
Move contetns of zmath to main.zig
1 parent 2156d4d commit 4885420

File tree

5 files changed

+4575
-4576
lines changed

5 files changed

+4575
-4576
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ pub fn build(b: *std.Build) void {
3535
Now in your code you may import and use zmath:
3636

3737
```zig
38-
const zm = @import("zmath").zmath;
38+
const zm = @import("zmath");
3939
4040
pub fn main() !void {
4141
//

src/benchmark.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ pub fn main() !void {
6565
const std = @import("std");
6666
const time = std.time;
6767
const Timer = time.Timer;
68-
const zm = @import("zmath").zmath;
68+
const zm = @import("zmath");
6969

7070
var prng = std.Random.DefaultPrng.init(0);
7171
const random = prng.random();

0 commit comments

Comments
 (0)