diff options
author | San Jacobs | 2022-02-26 16:22:34 +0100 |
---|---|---|
committer | San Jacobs | 2022-02-26 16:22:34 +0100 |
commit | e4bcf31ffe1cfcb48b161adb08dd30b77f38d1d8 (patch) | |
tree | 2fbca372f233864d5acc1ca7b122250113f41439 /src | |
parent | 9c95b5e46febce9a23639ac87963489f238258dd (diff) | |
download | satscalc-e4bcf31ffe1cfcb48b161adb08dd30b77f38d1d8.tar.gz satscalc-e4bcf31ffe1cfcb48b161adb08dd30b77f38d1d8.tar.bz2 satscalc-e4bcf31ffe1cfcb48b161adb08dd30b77f38d1d8.zip |
Set up basic C++ project
Diffstat (limited to 'src')
-rw-r--r-- | src/main.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp new file mode 100644 index 0000000..ea3604c --- /dev/null +++ b/src/main.cpp @@ -0,0 +1,10 @@ +#include <iostream> +#include <boost/date_time/time_duration.hpp> + +int main() +{ + tm test_moment_one{0, 30, 14, 27, 11, 2010}; + std::cout << "Testing 123" << std::endl; + return 0; +} + |