diff options
| author | Sardorbek Imomaliev <arroyos.roam.4n@icloud.com> | 2025-08-11 20:57:17 +0100 |
|---|---|---|
| committer | Sardorbek Imomaliev <arroyos.roam.4n@icloud.com> | 2025-08-11 21:01:47 +0100 |
| commit | 06e56be9c5568a996815941847b3373a5f268029 (patch) | |
| tree | 2604b83c69b616f89c505f0c7bc9d8833f1de732 /exercises | |
| parent | 82d8f06ffaed06a297bac98cc50ef6536fad95f1 (diff) | |
fix: 019 typo in example function, missing return type
Diffstat (limited to 'exercises')
| -rw-r--r-- | exercises/019_functions2.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/019_functions2.zig b/exercises/019_functions2.zig index a527ae2..5a76c7b 100644 --- a/exercises/019_functions2.zig +++ b/exercises/019_functions2.zig @@ -3,7 +3,7 @@ // example that takes two parameters. As you can see, parameters // are declared just like any other types ("name": "type"): // -// fn myFunction(number: u8, is_lucky: bool) { +// fn myFunction(number: u8, is_lucky: bool) void { // ... // } // |
