Bootstrap

C++可变参数模板

#include<iostream>
template<typename T>
void print(T v)
{
   
    std::cout << v << std::endl;
}
template<<
;