use handlebars::Handlebars;
use handlebars_sprig;
fn main() {
let mut hbs = Handlebars::new();
handlebars_sprig::addhelpers(&mut hbs);
let tpl = "{{ add 1 2 }}";
let empty_context: Vec<String> = vec![];
println!("Template produced: {}", hbs.render_template(tpl, &empty_context).unwrap())
}