added dummy program to test jenkins

This commit is contained in:
Guillaume Raffy 2019-03-07 10:32:23 +01:00
parent 64e55b0945
commit 6e903069ec
2 changed files with 11 additions and 0 deletions

3
Makefile Normal file
View File

@ -0,0 +1,3 @@
hello: hello.cpp
g++ -o hello hello.cpp

8
hello.cpp Normal file
View File

@ -0,0 +1,8 @@
#include <iostream>
using namespace std;
int main(int argc, char * argv[])
{
cout << "hello, monde!" << endl;
}