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