fork download
  1. #include <iostream>
  2.  
  3. template <typename... Args>
  4. void sum(Args&&... args) {
  5. (std::cout << ... << args) << std::endl;
  6. }
  7.  
  8. int main() {
  9. sum(1,2,3,4,5);
  10. }
Success #stdin #stdout 0s 15240KB
stdin
Standard input is empty
stdout
12345