update init template

* add fuzz example
* explain that you might want to delete main.zig or root.zig
This commit is contained in:
Andrew Kelley
2024-07-26 12:18:23 -07:00
parent 208baa37ca
commit 5d3a1cfdf5
2 changed files with 14 additions and 2 deletions

View File

@@ -1,3 +1,6 @@
//! By convention, root.zig is the root source file when making a library. If
//! you are making an executable, the convention is to delete this file and
//! start with root.zig instead.
const std = @import("std");
const testing = std.testing;