1extern crate zalgo;
23// Test if a given `char` is used for zalgo generation of strings.
4fn main() {
5let _: bool = zalgo::is_zalgo( '҉');
67// The following is simply a latin letter, and would return `false` as it is
8 // not zalgo.
9let _: bool = zalgo::is_zalgo('a');
10}