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

11 lines
167 B
Go

package sets
func AsciiLowercase() (dict []int) {
// Print lowercase letters (ASCII 97 to 122)
for i := 97; i <= 122; i++ {
dict = append(dict, i)
}
return
}