all/
all.rs

1extern crate zalgo;
2
3// Retrieve a `Vec` of `char`s of all zalgo characters.
4fn main() {
5    let _: Vec<char> = zalgo::all();
6}