File tree Expand file tree Collapse file tree 24 files changed +24
-23
lines changed Expand file tree Collapse file tree 24 files changed +24
-23
lines changed Original file line number Diff line number Diff line change 1
1
const std = @import ("std" );
2
- const print = @import ("../../include/zig/ print.zig" );
2
+ const print = @import ("print.zig" );
3
3
const builtin = @import ("builtin" );
4
4
const math = std .math ;
5
5
const Allocator = std .mem .Allocator ;
Original file line number Diff line number Diff line change 2
2
// https://gist.github.com/SpexGuy/953e5780cd2d2c524cba6a79f13076e6
3
3
4
4
const std = @import ("std" );
5
- const print = @import ("../../include/zig/ print.zig" );
5
+ const print = @import ("print.zig" );
6
6
7
7
const Channel = struct {
8
8
value : u32 ,
Original file line number Diff line number Diff line change 1
1
const std = @import ("std" );
2
- const print = @import ("../../include/zig/ print.zig" );
2
+ const print = @import ("print.zig" );
3
3
const bigint = std .math .big .int ;
4
4
const math = std .math ;
5
5
const global_allocator = std .heap .c_allocator ;
Original file line number Diff line number Diff line change 1
1
// From https://github.com/tiehuis/zig-benchmarks-game/blob/master/src/fannkuch-redux.zig
2
2
3
3
const std = @import ("std" );
4
- const print = @import ("../../include/zig/ print.zig" );
4
+ const print = @import ("print.zig" );
5
5
6
6
const global_allocator = std .heap .c_allocator ;
7
7
Original file line number Diff line number Diff line change 1
1
const std = @import ("std" );
2
- const print = @import ("../../include/zig/ print.zig" );
2
+ const print = @import ("print.zig" );
3
3
4
4
const max_n = 12 ;
5
5
const Vec = @Vector (max_n , u8 );
Original file line number Diff line number Diff line change 1
1
const std = @import ("std" );
2
- const print = @import ("../../include/zig/ print.zig" );
2
+ const print = @import ("print.zig" );
3
3
4
4
const Vec = @Vector (16 , u8 );
5
5
Original file line number Diff line number Diff line change 23
23
//
24
24
25
25
const std = @import ("std" );
26
- const print = @import ("../../include/zig/ print.zig" );
26
+ const print = @import ("print.zig" );
27
27
28
28
29
29
const u8x16 = @Vector (16 , u8 );
Original file line number Diff line number Diff line change 1
1
const std = @import ("std" );
2
- const print = @import ("../../include/zig/ print.zig" );
2
+ const print = @import ("print.zig" );
3
3
const global_allocator = std .heap .c_allocator ;
4
4
5
5
pub fn main () ! void {
Original file line number Diff line number Diff line change 1
1
const std = @import ("std" );
2
- const print = @import ("../../include/zig/ print.zig" );
2
+ const print = @import ("print.zig" );
3
3
const json = std .json ;
4
4
5
5
const global_allocator = std .heap .c_allocator ;
Original file line number Diff line number Diff line change 1
1
const std = @import ("std" );
2
- const print = @import ("../../include/zig/ print.zig" );
2
+ const print = @import ("print.zig" );
3
3
4
4
const gpa = std .heap .c_allocator ;
5
5
You can’t perform that action at this time.
0 commit comments