UBTKD2FLS3OVXNKGLJ2XW6OSHCFNCM7ZLTHPWYNCTRBJHIVFUOBAC
pub fn build(b: *@import("std").build.Builder) void {
const target = b.standardTargetOptions(.{});
const mode = b.standardReleaseOptions();
const exe = b.addExecutable("snake", "src/main.zig");
exe.strip = true;
exe.want_lto = true;
exe.single_threaded = true;
exe.setTarget(target);
exe.setBuildMode(mode);
exe.install();
b.step("run", "Run the app").dependOn(&exe.run().step);
}