summaryrefslogtreecommitdiff
path: root/exercises/087_async3.zig
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/087_async3.zig')
-rw-r--r--exercises/087_async3.zig2
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.