mstch/test/data/partial_template.hpp

4 lines
196 B
C++
Raw Normal View History

2015-04-23 21:55:18 +08:00
const mstch::node partial_template_data = mstch::map{
{"title", mstch::lambda{[](){ return std::string{"Welcome"}; }}},
{"again", mstch::lambda{[](){ return std::string{"Goodbye"}; }}},
};