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