# HG changeset patch # User Nicolas Saunier # Date 1256242329 14400 # Node ID ace29ecfb846bf68a7e9032142a2eab74093c12a # Parent de564292561511c74ab2e6766da7ca0e033e74a7 basic files and directories diff -r de5642925615 -r ace29ecfb846 .hgignore --- a/.hgignore Mon Oct 19 13:16:21 2009 -0400 +++ b/.hgignore Thu Oct 22 16:12:09 2009 -0400 @@ -1,6 +1,7 @@ # use glob syntax. syntax: glob +*.out *.a *.o *.exe diff -r de5642925615 -r ace29ecfb846 Makefile --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Makefile Thu Oct 22 16:12:09 2009 -0400 @@ -0,0 +1,3 @@ +# put test for platform + +INCLUDE=./include \ No newline at end of file diff -r de5642925615 -r ace29ecfb846 c/main.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/c/main.cpp Thu Oct 22 16:12:09 2009 -0400 @@ -0,0 +1,10 @@ +#include + +using namespace std; + +int main(int argc, char *argv[]) { + + cout << "Hello World" << endl; + + return 1; +} diff -r de5642925615 -r ace29ecfb846 c/utils.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/c/utils.cpp Thu Oct 22 16:12:09 2009 -0400 @@ -0,0 +1,1 @@ +// diff -r de5642925615 -r ace29ecfb846 include/utils.hpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/include/utils.hpp Thu Oct 22 16:12:09 2009 -0400 @@ -0,0 +1,6 @@ +#ifndef UTILS_HPP +#define UTILS_HPP + + + +#endif