You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #include <iostream>
-
- int main() {
- auto add = [](auto x, auto y) {
- return x+y;
- };
-
- auto r1 = add(1, 2);
- auto r2 = add(1.1, 2.2);
- std::cout << r1 << " " << r2 << std::endl;
- return 0;
- }
|