git-svn-id: svn://scm.gforge.inria.fr/svnroot/paradiseo@748 331e1502-861f-0410-8da2-ba01fb791d7f
17 lines
253 B
C++
17 lines
253 B
C++
|
|
#include <iostream>
|
|
// #include < file >
|
|
|
|
// Use functions from namespace std ?
|
|
using namespace std;
|
|
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
// Your code ...
|
|
cout << "I'm a simple application linked with ParadisEO" << endl ;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|