diff options
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; +} + |