Merge pull request 'Remove prefilled solution' (#485) from it3x/remove-solution into main

Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/485
This commit is contained in:
Chris Boesch
2026-06-29 20:30:13 +02:00
2 changed files with 12 additions and 3 deletions
+1 -1
View File
@@ -50,7 +50,7 @@ pub fn main(init: std.process.Init) !void {
// wait a minute... // wait a minute...
// opening a directory might fail! // opening a directory might fail!
// what should we do here? // what should we do here?
var output_dir: std.Io.Dir = try cwd.openDir(io, "output", .{}); var output_dir: std.Io.Dir = cwd.openDir(io, "output", .{});
defer output_dir.close(io); defer output_dir.close(io);
// we try to open the file `zigling.txt`, // we try to open the file `zigling.txt`,
+11 -2
View File
@@ -1,5 +1,5 @@
--- exercises/109_files.zig 2026-03-20 19:23:48.874150121 +0100 --- exercises/109_files.zig 2026-06-29 17:08:04.124224900 +0000
+++ answers/109_files.zig 2026-04-02 10:51:15.813831695 +0200 +++ answers/109_files.zig 2026-06-29 17:13:20.696220533 +0000
@@ -41,7 +41,7 @@ @@ -41,7 +41,7 @@
// by doing nothing // by doing nothing
// //
@@ -9,6 +9,15 @@
// if there's any other unexpected error we just propagate it through // if there's any other unexpected error we just propagate it through
else => return e, else => return e,
}; };
@@ -50,7 +50,7 @@
// wait a minute...
// opening a directory might fail!
// what should we do here?
- var output_dir: std.Io.Dir = cwd.openDir(io, "output", .{});
+ var output_dir: std.Io.Dir = try cwd.openDir(io, "output", .{});
defer output_dir.close(io);
// we try to open the file `zigling.txt`,
@@ -61,7 +61,7 @@ @@ -61,7 +61,7 @@
// but here we are not yet done writing to the file // but here we are not yet done writing to the file
// if only there were a keyword in Zig that // if only there were a keyword in Zig that