passgen/dictionary/sets/special_chars.go

11 lines
160 B
Go
Raw Normal View History

2024-03-28 13:17:50 +02:00
package sets
func SpecialChars() (dict []int) {
// Print special symbols (ASCII 33 to 47)
for i := 33; i <= 47; i++ {
dict = append(dict, i)
}
return
}