use carlotk::prelude::*;
const HELP: &str = include_str!("../help_version.txt");
pub fn helpme() {
printhelp(HELP);
}
pub fn version(_args: CliArgs) {
println!("{}", "The Carlo Language".truecolor(20, 146, 255).bold());
println!("Version {}", VERSION);
}