From 3a80e12466086b895f42e7befaa4b4428208301e Mon Sep 17 00:00:00 2001 From: Ibrahim Muftee Date: Tue, 30 Jun 2026 00:30:23 -0500 Subject: feat: exercises 81-90 --- exercises/086_async2.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'exercises/086_async2.zig') diff --git a/exercises/086_async2.zig b/exercises/086_async2.zig index cf376e2..89a061d 100644 --- a/exercises/086_async2.zig +++ b/exercises/086_async2.zig @@ -44,7 +44,7 @@ pub fn main(init: std.process.Init) !void { // Now collect the result. What method on Future gives us // the value, blocking until it's ready? - const answer = future.???(io); + const answer = future.await(io); print("The answer is: {}\n", .{answer}); } -- cgit v1.2.3