Skip to content

Commit ce0190c

Browse files
authored
Add files via upload
1 parent 844f95e commit ce0190c

File tree

2 files changed

+0
-8
lines changed

2 files changed

+0
-8
lines changed

Zig/debug_example.zig

-4
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,6 @@ const cell = fill3x3: { // cell array allows accessing all elements
3030
break :fill3x3 m; // initializes cell array with m
3131
}; //
3232

33-
const c1 = [_]u8{ 0, 1, 2, 0, 3 };
34-
const c2 = [_]u8{ 0, 4, 5, 0, 6 };
35-
const c3 = [_]u8{ 0, 7, 8, 0, 9 };
36-
3733
fn reinit() void { // reinitilizes lines, columns and cells
3834
for (0..9) |i| {
3935
lines[i] = 0;

Zig/example.zig

-4
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,6 @@ const cell = fill3x3: { // cell array allows accessing all elements
3030
break :fill3x3 m; // initializes cell array with m
3131
}; //
3232

33-
const c1 = [_]u8{ 0, 1, 2, 0, 3 };
34-
const c2 = [_]u8{ 0, 4, 5, 0, 6 };
35-
const c3 = [_]u8{ 0, 7, 8, 0, 9 };
36-
3733
fn reinit() void { // reinitilizes lines, columns and cells
3834
for (0..9) |i| {
3935
lines[i] = 0;

0 commit comments

Comments
 (0)