Ajout de l'ensemble du workspace.
[GPU.git] / WCudaMSE / Tuto_CppTest / src / cpp / core / standard / hello.cpp
1 #include <iostream>
2
3 using std::cout;
4 using std::endl;
5
6 /*----------------------------------------------------------------------*\
7 |* Implementation *|
8 \*---------------------------------------------------------------------*/
9
10 /*--------------------------------------*\
11 |* Public *|
12 \*-------------------------------------*/
13
14 void helloCPP(void)
15 {
16 cout << "Hello CPP" << endl;
17 }
18
19 /*----------------------------------------------------------------------*\
20 |* End *|
21 \*---------------------------------------------------------------------*/
22