mirror of
https://codeberg.org/ziglings/exercises.git
synced 2026-06-12 01:49:59 +00:00
Merge pull request 'fixed missing uppercase letter' (#387) from async2-fix into main
Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/387
This commit is contained in:
@@ -1137,7 +1137,7 @@ const exercises = [_]Exercise{
|
|||||||
},
|
},
|
||||||
.{
|
.{
|
||||||
.main_file = "086_async2.zig",
|
.main_file = "086_async2.zig",
|
||||||
.output = "Computing... the answer is: 42",
|
.output = "Computing... The answer is: 42",
|
||||||
},
|
},
|
||||||
.{
|
.{
|
||||||
.main_file = "087_async3.zig",
|
.main_file = "087_async3.zig",
|
||||||
|
|||||||
@@ -1,14 +1,11 @@
|
|||||||
--- exercises/086_async2.zig 2026-04-01 19:22:50.017227542 +0200
|
--- exercises/086_async2.zig 2026-04-03 19:42:15.274532915 +0200
|
||||||
+++ answers/086_async2.zig 2026-04-01 19:21:57.569158481 +0200
|
+++ answers/086_async2.zig 2026-04-03 21:30:18.180019206 +0200
|
||||||
@@ -38,9 +38,9 @@
|
@@ -38,7 +38,7 @@
|
||||||
|
|
||||||
// Now collect the result. What method on Future gives us
|
// Now collect the result. What method on Future gives us
|
||||||
// the value, blocking if it isn't ready yet?
|
// the value, blocking if it isn't ready yet?
|
||||||
- const answer = future.???(io);
|
- const answer = future.???(io);
|
||||||
+ const answer = future.await(io);
|
+ const answer = future.await(io);
|
||||||
|
|
||||||
- std.debug.print("The answer is: {}\n", .{answer});
|
std.debug.print("The answer is: {}\n", .{answer});
|
||||||
+ std.debug.print("the answer is: {}\n", .{answer});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fn computeAnswer(a: u32, b: u32) u32 {
|
|
||||||
|
|||||||
Reference in New Issue
Block a user