Never been to DZone Snippets before?

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

About this user

« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS 

Mono - Hello World

using System;

class HelloWorld
{
public static void Main()
{
Console.WriteLine("Hello World !!!");
}
}

C++ - Hello 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;
}
« Newer Snippets
Older Snippets »
Showing 1-2 of 2 total  RSS