cart-elc

Source code for CART-ELC
git clone git://git.laack.co/cart-elc.git
Log | Files | Refs | README | LICENSE

Array_variadic_ctor_cxx11.cpp (102B)


      1 Array<int, 1, 6> a(1, 2, 3, 4, 5, 6);
      2 Array<int, 3, 1> b {1, 2, 3};
      3 cout << a << "\n\n" << b << endl;