31 lines
1.2 KiB
C++
Executable File
31 lines
1.2 KiB
C++
Executable File
/***************************************************************************
|
|
main.cpp - description
|
|
-------------------
|
|
begin : gio giu 1 13:49:25 CEST 2000
|
|
copyright : (C) 2000 by Soragna Angelo
|
|
email : alex@aga.it
|
|
***************************************************************************/
|
|
|
|
/***************************************************************************
|
|
* *
|
|
* This program is free software; you can redistribute it and/or modify *
|
|
* it under the terms of the GNU General Public License as published by *
|
|
* the Free Software Foundation; either version 2 of the License, or *
|
|
* (at your option) any later version. *
|
|
* *
|
|
***************************************************************************/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
#include <config.h>
|
|
#endif
|
|
|
|
#include <iostream.h>
|
|
#include <stdlib.h>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
cout << "Hello, World!" << endl;
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|