Fix error in README.md
This commit is contained in:
parent
c8be3247da
commit
79893554d3
1 changed files with 1 additions and 1 deletions
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
auto main() -> int {
|
auto main() -> int {
|
||||||
using namespace utempl;
|
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>()
|
| Take<5>()
|
||||||
| Map([](int arg){return arg + 1;})
|
| Map([](int arg){return arg + 1;})
|
||||||
| Map([](int arg) -> float {return arg;})
|
| Map([](int arg) -> float {return arg;})
|
||||||
|
|
Loading…
Reference in a new issue