mirror of
https://codeberg.org/andyscott/ziglings.git
synced 2024-11-14 05:40:47 -05:00
0956f1839f
When I hit 999 exercises, I will finally have reached the ultimate state of soteriological release and no more exercises will be needed. The cycle will be complete. All that will be left is perfect quietude, freedom, and highest happiness.
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;
|
|
79,80c79,80
|
|
< fn printSecondLine() ??? {
|
|
< var second_line2: ?*const [18]u8 = ???;
|
|
---
|
|
> fn printSecondLine() void {
|
|
> var second_line2: ?*const [18]u8 = null;
|