Fix error in README.md

This commit is contained in:
sha512sum 2024-03-29 20:18:06 +00:00
parent c8be3247da
commit 79893554d3

View file

@ -7,7 +7,7 @@
auto main() -> int {
using namespace utempl;
TupleLike auto tuple = Tuple{1, 2, 3, 4, 5, 6}
constexpr TupleLike auto tuple = Tuple{1, 2, 3, 4, 5, 6}
| Take<5>()
| Map([](int arg){return arg + 1;})
| Map([](int arg) -> float {return arg;})