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 11const std = @import ("std" );
2- const print = @import ("../../include/zig/ print.zig" );
2+ const print = @import ("print.zig" );
33const builtin = @import ("builtin" );
44const math = std .math ;
55const Allocator = std .mem .Allocator ;
Original file line number Diff line number Diff line change 22// https://gist.github.com/SpexGuy/953e5780cd2d2c524cba6a79f13076e6
33
44const std = @import ("std" );
5- const print = @import ("../../include/zig/ print.zig" );
5+ const print = @import ("print.zig" );
66
77const Channel = struct {
88 value : u32 ,
Original file line number Diff line number Diff line change 11const std = @import ("std" );
2- const print = @import ("../../include/zig/ print.zig" );
2+ const print = @import ("print.zig" );
33const bigint = std .math .big .int ;
44const math = std .math ;
55const global_allocator = std .heap .c_allocator ;
Original file line number Diff line number Diff line change 11// From https://github.com/tiehuis/zig-benchmarks-game/blob/master/src/fannkuch-redux.zig
22
33const std = @import ("std" );
4- const print = @import ("../../include/zig/ print.zig" );
4+ const print = @import ("print.zig" );
55
66const global_allocator = std .heap .c_allocator ;
77
Original file line number Diff line number Diff line change 11const std = @import ("std" );
2- const print = @import ("../../include/zig/ print.zig" );
2+ const print = @import ("print.zig" );
33
44const max_n = 12 ;
55const Vec = @Vector (max_n , u8 );
Original file line number Diff line number Diff line change 11const std = @import ("std" );
2- const print = @import ("../../include/zig/ print.zig" );
2+ const print = @import ("print.zig" );
33
44const Vec = @Vector (16 , u8 );
55
Original file line number Diff line number Diff line change 2323//
2424
2525const std = @import ("std" );
26- const print = @import ("../../include/zig/ print.zig" );
26+ const print = @import ("print.zig" );
2727
2828
2929const u8x16 = @Vector (16 , u8 );
Original file line number Diff line number Diff line change 11const std = @import ("std" );
2- const print = @import ("../../include/zig/ print.zig" );
2+ const print = @import ("print.zig" );
33const global_allocator = std .heap .c_allocator ;
44
55pub fn main () ! void {
Original file line number Diff line number Diff line change 11const std = @import ("std" );
2- const print = @import ("../../include/zig/ print.zig" );
2+ const print = @import ("print.zig" );
33const json = std .json ;
44
55const global_allocator = std .heap .c_allocator ;
Original file line number Diff line number Diff line change 11const std = @import ("std" );
2- const print = @import ("../../include/zig/ print.zig" );
2+ const print = @import ("print.zig" );
33
44const gpa = std .heap .c_allocator ;
55
You can’t perform that action at this time.
0 commit comments