1const std = @import("std");
2
3pub fn main() !void {
4 const data: []const u8 = @embedFile("max.txt");
5
6 // Print the whole file out.
7 std.debug.print("{s}\n", .{data});
8
9 // Loop over each byte.
10 for (data) |c| {
11 std.debug.print("0x{X:0>2} ", .{c});
12 }
13 std.debug.print("\n", .{});
14}