commit | 142b263f9811b9e16aa0e0f7afecc4c801165bc3 | [log] [tgz] |
---|---|---|
author | Zane Shelley <zshelle@us.ibm.com> | Wed Apr 17 17:18:33 2019 -0500 |
committer | Zane Shelley <zshelle@us.ibm.com> | Wed Apr 17 17:18:33 2019 -0500 |
tree | f256e5b4b74898ac83520bcd40a91ac7036d3efd | |
parent | 4c1127e9a19384baca96a8c1f7d5248d0aeef093 [diff] |
hello world Change-Id: Ic77d56ff61b68bf2235e761668796c7c403ffa4b
diff --git a/obj/.gitignore b/obj/.gitignore new file mode 100644 index 0000000..3c95632 --- /dev/null +++ b/obj/.gitignore
@@ -0,0 +1,5 @@ +# Ignore everything... +* + +# Except... +!.gitignore
diff --git a/src/main.cpp b/src/main.cpp new file mode 100644 index 0000000..b9dae63 --- /dev/null +++ b/src/main.cpp
@@ -0,0 +1,8 @@ + +#include <stdio.h> + +int main() +{ + printf( "Hello, World!\n" ); +} +