Add ex 50 'no values' (help further address #25)

This commit is contained in:
Dave Gauer
2021-02-28 18:36:38 -05:00
parent 0552a62896
commit 28791f0cb8
3 changed files with 102 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
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;