084_async.patch 332 B

1234567891011
  1. --- exercises/084_async.zig 2023-10-03 22:15:22.125574535 +0200
  2. +++ answers/084_async.zig 2023-10-05 20:04:07.219436606 +0200
  3. @@ -48,7 +48,7 @@
  4. pub fn main() void {
  5. // Additional Hint: you can assign things to '_' when you
  6. // don't intend to do anything with them.
  7. - foo();
  8. + _ = async foo();
  9. }
  10. fn foo() void {