From Balzy, 11 Years ago, written in C++.
This paste is a reply to First Paste - C++ Example from Balzy - view diff
Embed
  1. #include<iostream>
  2.  
  3. int main()
  4. {
  5.  
  6. // Prints "Hello World!" string ten times
  7. for (int t = 0; t < 10; ++t)
  8. {
  9.         std::cout << "Hello World!" << std::endl;
  10. }
  11.  
  12.   return 0;    
  13. }