passgen/dictionary/sets/ascii_uppercase.go
2024-03-28 13:17:50 +02:00

11 lines
164 B
Go

package sets
func AsciiUppercase() (dict []int) {
// Print uppercase letters (ASCII 65 to 90)
for i := 65; i <= 90; i++ {
dict = append(dict, i)
}
return
}