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

11 lines
147 B
Go

package sets
func Numbers() (dict []int) {
// Print numbers (ASCII 48 to 57)
for i := 48; i <= 57; i++ {
dict = append(dict, i)
}
return
}