Interactive shell for C++ template metaprogramming exploration
Metaprogramming shell for C++ templates
metashell$ metashell$ metashell -c "template <int N> struct Factorial { static const int value = N * Factorial<N-1>::value; }; template <> struct Factorial<0> { static const int value = 1; }; Factorial<5>::value"$ metashell -f program.cpp