diff --git a/exercises/090_async7.zig b/exercises/090_async7.zig index 2da3a4a..ab0892c 100644 --- a/exercises/090_async7.zig +++ b/exercises/090_async7.zig @@ -29,7 +29,7 @@ pub fn main() void { // The main() function can not be async. But we know // getBeef() will not suspend with this particular // invocation. Please make this okay: - var my_beef = getBeef(0); + var my_beef = nosuspend getBeef(0); print("beef? {X}!\n", .{my_beef}); }