Dukales

L

Nov 24th, 2015
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.19 KB | None | 0 0
  1. #include <iostream>
  2.  
  3. #include <cstdlib>
  4.  
  5. #define L(l) [] { return l; }
  6.  
  7. int main()
  8. {
  9.     int l = 1;
  10.     std::cout << L(L(L(L(l))))()()()() << std::endl;
  11.     return EXIT_SUCCESS;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment