···11-const std = @import("std");
11+const Raytracer = @import("rayray").Raytracer;
2233pub fn main() !void {
44- // Prints to stderr (it's a shortcut based on `std.io.getStdErr()`)
55- std.debug.print("All your {s} are belong to us.\n", .{"codebase"});
66-77- // stdout is for the actual output of your application, for example if you
88- // are implementing gzip, then only the compressed bytes should be sent to
99- // stdout, not any debugging messages.
1010- const stdout_file = std.io.getStdOut().writer();
1111- var bw = std.io.bufferedWriter(stdout_file);
1212- const stdout = bw.writer();
1313-1414- try stdout.print("Run `zig build test` to run the tests.\n", .{});
1515-1616- try bw.flush(); // don't forget to flush!
44+ const raytracer = Raytracer.init();
55+ defer raytracer.deinit();
176}