passgen/dictionary/sets/ascii_uppercase.go

11 lines
164 B
Go
Raw Normal View History

2024-03-28 13:17:50 +02:00
package sets
func AsciiUppercase() (dict []int) {
// Print uppercase letters (ASCII 65 to 90)
for i := 65; i <= 90; i++ {
dict = append(dict, i)
}
return
}