fn isAllAlphabetic(str: []const u8) bool
fn isAllAlphabetic(str: []const u8) bool { for (str) |c| { if (!std.ascii.isAlphabetic(c)) return false; } return true; }