aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/exercises/018_functions.zig
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/018_functions.zig')
-rw-r--r--exercises/018_functions.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/018_functions.zig b/exercises/018_functions.zig
index 1f78438..c9cc6c5 100644
--- a/exercises/018_functions.zig
+++ b/exercises/018_functions.zig
@@ -25,6 +25,6 @@ pub fn main() void {
// We're just missing a couple things. One thing we're NOT missing is the
// keyword "pub", which is not needed here. Can you guess why?
//
-??? deepThought() ??? {
+fn deepThought() u8 {
return 42; // Number courtesy Douglas Adams
}