Mono - Hello World
class HelloWorld
{
public static void Main()
{
Console.WriteLine("Hello World !!!");
}
}
DZone Snippets > whitetiger > helloworld
11376 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
/* * * Semplice esempio di Hello World !!! */ #include <iostream> using namespace std; int main(int argc, char *argv[]) { cout << "Hello World !!!" << endl; // endl equivale ad un \n return 0; }