passgen/dictionary/sets/ascii_lowercase.go
2024-08-14 12:27:59 +03:00

11 lines
166 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
}