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.

02-pythonic-add.cc 214 B

123456789101112
  1. #include <iostream>
  2. int main() {
  3. auto add = [](auto x, auto y) {
  4. return x+y;
  5. };
  6. auto r1 = add(1, 2);
  7. auto r2 = add(1.1, 2.2);
  8. std::cout << r1 << " " << r2 << std::endl;
  9. return 0;
  10. }