changeset 3:ace29ecfb846

basic files and directories
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Thu, 22 Oct 2009 16:12:09 -0400
parents de5642925615
children 6509f5b1d795
files .hgignore Makefile c/main.cpp c/utils.cpp include/utils.hpp
diffstat 5 files changed, 21 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- 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
--- /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
--- /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 <iostream>
+
+using namespace std;
+
+int main(int argc, char *argv[]) {
+
+  cout << "Hello World" << endl;
+
+  return 1;
+}
--- /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 @@
+// 
--- /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