diff options
author | B Stack <bgstack15@gmail.com> | 2019-08-25 23:04:24 -0400 |
---|---|---|
committer | B Stack <bgstack15@gmail.com> | 2019-08-25 23:04:24 -0400 |
commit | da08171e0c65e278feeb8393b5a8f7e79ea491c9 (patch) | |
tree | 728fd5de284626349bc9e9f5f48f30a83e0efc10 /helloworld.cpp | |
parent | initial commit (diff) | |
download | cpp-master.tar.gz cpp-master.tar.bz2 cpp-master.zip |
Improved the makefile for multifile project, including header files.
Diffstat (limited to 'helloworld.cpp')
-rw-r--r-- | helloworld.cpp | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/helloworld.cpp b/helloworld.cpp deleted file mode 100644 index 8474a1e..0000000 --- a/helloworld.cpp +++ /dev/null @@ -1,12 +0,0 @@ -#include <iostream> - -int return5() -{ - return 5 ; -} - -int main() { - //int x { }, y { } ; - std::cout << return5() << '\n' ; - return 0 ; -} |