diff options
| author | Dave Gauer <[email protected]> | 2021-08-28 10:25:03 -0400 |
|---|---|---|
| committer | GitHub <[email protected]> | 2021-08-28 10:25:03 -0400 |
| commit | d14cc0a8ab4d753dc56285ecce203a827782d6fe (patch) | |
| tree | e906e5eb8b2c4f2d6205cafdfe054567666c652d | |
| parent | 0603ab1e02fb8ecb573fd14e2068ddca66765a2d (diff) | |
| download | ziglings-d14cc0a8ab4d753dc56285ecce203a827782d6fe.tar.xz ziglings-d14cc0a8ab4d753dc56285ecce203a827782d6fe.zip | |
Update 018_functions.zig
| -rw-r--r-- | exercises/018_functions.zig | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/exercises/018_functions.zig b/exercises/018_functions.zig index d8be5a1..1f78438 100644 --- a/exercises/018_functions.zig +++ b/exercises/018_functions.zig @@ -1,18 +1,15 @@ // -// Functions! We've already created lots of functions called "main()". Now let's +// Functions! We've already created lots of functions called 'main()'. Now let's // do something different: // // fn foo(n: u8) u8 { // return n + 1; // } // -// The foo() function above takes a number "n" and returns a number that is +// The foo() function above takes a number 'n' and returns a number that is // larger by one. // -// If your function doesn't take any parameters and doesn't return anything, -// it would be defined like main(): -// -// fn foo() void { } +// Note the input parameter 'n' and return types are both u8. // const std = @import("std"); |
