1
0
Fork 0
mirror of https://github.com/ratfactor/ziglings synced 2024-05-10 01:06:03 +02:00

add ex085 async 2

This commit is contained in:
Dave Gauer 2021-05-12 21:04:58 -04:00
parent e555fdc3df
commit d8dddd128f
3 changed files with 35 additions and 0 deletions

View File

@ -418,6 +418,10 @@ const exercises = [_]Exercise{
.output = "foo() A",
.hint = "Read the facts. Use the facts.",
},
.{
.main_file = "085_async2.zig",
.output = "Hello async!",
},
};
/// Check the zig version to make sure it can compile the examples properly.

29
exercises/085_async2.zig Normal file
View File

@ -0,0 +1,29 @@
//
// So, 'suspend' returns control to the place from which it was
// called (the "call site"). How do we control back to the
// suspended function?
//
// For that, we have a new keyword called 'resume' which takes an
// async function invocation's frame and returns control to it.
//
// fn fooThatSuspends() void {
// suspend;
// }
//
// var foo_frame = async fooThatSuspends();
// resume foo_frame;
//
// See if you can make this program print "Hello async!".
//
const print = @import("std").debug.print;
pub fn main() void {
var foo_frame = async foo();
}
fn foo() void {
print("Hello ", .{});
suspend;
print("async!\n", .{});
}

View File

@ -0,0 +1,2 @@
21a22
> resume foo_frame;