mirror of
https://codeberg.org/andyscott/ziglings.git
synced 2024-12-22 22:13:11 -05:00
c7697a4282
Add the update-patches.py tool. Update all the patches, so that the files are up-to-date and use the same patch file format.
14 lines
386 B
Diff
14 lines
386 B
Diff
68c68
|
|
< var first_line1: *const [16]u8 = ???;
|
|
---
|
|
> var first_line1: *const [16]u8 = undefined;
|
|
71c71
|
|
< var first_line2: Err!*const [21]u8 = ???;
|
|
---
|
|
> var first_line2: Err!*const [21]u8 = Err.Cthulhu;
|
|
80,81c80,81
|
|
< fn printSecondLine() ??? {
|
|
< var second_line2: ?*const [18]u8 = ???;
|
|
---
|
|
> fn printSecondLine() void {
|
|
> var second_line2: ?*const [18]u8 = null;
|