mirror of
https://codeberg.org/andyscott/ziglings.git
synced 2024-11-13 21:40:46 -05:00
26 lines
474 B
Diff
26 lines
474 B
Diff
--- exercises/091_async8.zig 2023-10-03 22:15:22.125574535 +0200
|
|
+++ answers/091_async8.zig 2023-10-05 20:04:07.252770563 +0200
|
|
@@ -17,7 +17,7 @@
|
|
|
|
var frame = async suspendable();
|
|
|
|
- print("X", .{});
|
|
+ print("D", .{});
|
|
|
|
resume frame;
|
|
|
|
@@ -25,11 +25,11 @@
|
|
}
|
|
|
|
fn suspendable() void {
|
|
- print("X", .{});
|
|
+ print("B", .{});
|
|
|
|
suspend {
|
|
- print("X", .{});
|
|
+ print("C", .{});
|
|
}
|
|
|
|
- print("X", .{});
|
|
+ print("E", .{});
|
|
}
|