added async-io quiz

This commit is contained in:
Chris Boesch
2026-04-03 18:11:00 +02:00
parent 2500936153
commit 1c6487c1e7
25 changed files with 399 additions and 20 deletions
+11
View File
@@ -0,0 +1,11 @@
--- exercises/085_async.zig 2026-04-01 20:40:08.904999609 +0200
+++ answers/085_async.zig 2026-04-01 20:40:05.641933231 +0200
@@ -37,7 +37,7 @@
const std = @import("std");
pub fn main(init: std.process.Init) !void {
- const io = init.???;
+ const io = init.io;
// Get the current wall-clock time using the Io interface.
// Hint: Timestamp.now() takes an Io and a Clock type (.real = wall clock).