diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/main.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.zig b/src/main.zig index 8ebb45c..7f7c16a 100644 --- a/src/main.zig +++ b/src/main.zig @@ -74,6 +74,6 @@ pub fn main() !void { std.debug.print("Logs from your program will appear here!\n", .{}); // TODO: Uncomment the lines below to pass the first stage - // const content = choices.array.items[0].object.get("message").?.object.get("content").?.string; - // try std.fs.File.stdout().writeAll(content); + const content = choices.array.items[0].object.get("message").?.object.get("content").?.string; + try std.fs.File.stdout().writeAll(content); } |