From bdfe3df2947f8787c8a4ef8c534f6a8932e13871 Mon Sep 17 00:00:00 2001 From: Ibrahim Muftee Date: Mon, 29 Jun 2026 15:11:40 -0500 Subject: feat: begin solving exercises --- exercises/075_quiz8.zig | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'exercises/075_quiz8.zig') diff --git a/exercises/075_quiz8.zig b/exercises/075_quiz8.zig index 08270ee..fd7c702 100644 --- a/exercises/075_quiz8.zig +++ b/exercises/075_quiz8.zig @@ -48,7 +48,13 @@ const Path = struct { // instead. // // Please fill in the body of this function! -fn makePath(from: *Place, to: *Place, dist: u8) Path {} +fn makePath(from: *Place, to: *Place, dist: u8) Path { + return Path{ + .from = from, + .to = to, + .dist = dist, + }; +} // Using our new function, these path definitions take up considerably less // space in our program now! -- cgit v1.2.3