diff options
| author | Ibrahim Muftee <ibrahim@muftee.net> | 2026-06-30 00:30:23 -0500 |
|---|---|---|
| committer | Ibrahim Muftee <ibrahim@muftee.net> | 2026-06-30 00:30:23 -0500 |
| commit | 3a80e12466086b895f42e7befaa4b4428208301e (patch) | |
| tree | 54ed86c75ad342d1a12a4bdd01cbac75e95d5516 /exercises/087_async3.zig | |
| parent | f3c00ec9a5f262396d50be9694a273b665628c42 (diff) | |
Diffstat (limited to 'exercises/087_async3.zig')
| -rw-r--r-- | exercises/087_async3.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/exercises/087_async3.zig b/exercises/087_async3.zig index d10052c..b4644d5 100644 --- a/exercises/087_async3.zig +++ b/exercises/087_async3.zig @@ -28,7 +28,7 @@ pub fn main(init: std.process.Init) !void { // Launch both tasks asynchronously. var future_a = io.async(slowAdd, .{ 1, 2 }); defer _ = future_a.cancel(io); - var future_b = ???(slowMul, .{ 6, 7 }); + var future_b = io.async(slowMul, .{ 6, 7 }); defer _ = future_b.cancel(io); // Await both results. |
