fork download
  1. #include <iostream>
  2. #include <string>
  3. using namespace std;
  4.  
  5. template< class TYPE >
  6. void PrintTwice(TYPE data)
  7. {
  8. cout << "Double meaning: " << data + data << endl;
  9.  
  10. }
  11.  
  12. int main()
  13. {
  14. string st = "wololo";
  15.  
  16. PrintTwice(st);
  17.  
  18. return 0;
  19. }
Success #stdin #stdout 0s 4296KB
stdin
Standard input is empty
stdout
Double meaning: wololowololo