//
// Please fill in the body of this function!
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