This commit is contained in:
Adam Millerchip 2022-01-03 00:29:21 +09:00
parent 302b7539e9
commit f7f02e83fe
1 changed files with 1 additions and 1 deletions

View File

@ -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});
}