79787811

Date: 2025-10-11 04:45:53
Score: 0.5
Natty:
Report link
const std = @import("std");
const print = std.debug.print;

pub fn main() void {
    const number_or_error: anyerror!i32 = error.ArgNotFound;
    print("\nOption 1\nType: {}\nValue: {}", 
        .{
             @TypeOf(number_or_error), 
             number_or_error
         }
    );
}
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: iot_builder