comb 0.2.0

CLI for the Handlebars templating engine
1
2
3
4
5
use colored::Colorize;

pub fn error(string: &str) {
    print!("{} {}", "Err:".red().bold(), string);
}