Hacker News new | ask | show | jobs
by lostmsu 1537 days ago
OK, maybe I need to rephrase my question: if I do this in main, am I guaranteed to have "main" printed after "foo() is finished"

    foo();
    std.log.info("main", .{});
3 comments

That's how it works in Zig. Calling an async function like this will also await it.
Could you share an example? I thought async functions weren't callable outside an `async` invocation from the `Inline` calling convention.
Within main(), your snippet will give you an error at compile time "function with calling convention 'Inline' cannot be async". In my snippet foo() is invoked in an async context using the async keyword, and when foo() suspends (due to it awaiting bar()) control will be returned to main(). If you change your first line from

  foo();
to

  _ = async foo();
Then your program will compile and your log is not going to be prevented by Zig's async shenanigans.
I would consider that necessary, but not sufficient, to call a particular async system "good", yes.