passgen/dictionary/sets/ascii_lowercase.go

11 lines
167 B
Go
Raw Normal View History

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