println!("Pass `-' as `<str>' to read lines from stdin");
println!("");
println!("Enabled Features:");
ifcfg!(feature="perl"){
println!("+perl\t\t\tEnable PCRE2 (extended) regular-expressions.\n\t\t\tNote that PCRE2 regex engine matches on *bytes*, not *characters*; meaning if a match cuts a vlid UTF8 codepoint into an invalid one, the output will replace the invalid characters with U+FFFD REPLACEMENT CHARACTER.");
}else{
println!("-perl\t\tPCRE2 (extended) features are disabled; a faster but less featureful regular expression engine (that matches on UTF8 strings instead of raw bytes) is used instead.");
}
ifcfg!(feature="unstable"){
println!("+unstable\t\tUnstable optimisations evailable & enabled for build.");
}else{
println!("-unstable\t\tUnstable optimisations disabled / not available for build.");