From ce1e0070c3f14677b899cbfb62aed13b4db73d61 Mon Sep 17 00:00:00 2001 From: Armin Friedl Date: Sat, 18 Jan 2025 16:00:53 +0100 Subject: [PATCH] 018 --- exercises/018_functions.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 }