partial_template.hpp 222 B

1234
  1. const mstch::node partial_template_data = mstch::map{
  2. {"title", mstch::lambda{[]()->mstch::node{ return std::string{"Welcome"}; }}},
  3. {"again", mstch::lambda{[]()->mstch::node{ return std::string{"Goodbye"}; }}},
  4. };