From Balzy, 11 Years ago, written in C++.
This paste is a reply to First Paste - C++ Example from Balzy - go back
Embed
#include<iostream>

int main()
{

// Prints "Hello World!" string ten times
for (int t = 0; t < 10; ++t)
{
        std::cout << "Hello World!" << std::endl;
}

return 0;
}