• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 
2 // Copyright 2018 Peter Dimov.
3 //
4 // Distributed under the Boost Software License, Version 1.0.
5 //
6 // See accompanying file LICENSE_1_0.txt or copy at
7 // http://www.boost.org/LICENSE_1_0.txt
8 
9 #include <boost/chrono.hpp>
10 #include <iostream>
11 
main()12 int main()
13 {
14     std::cout << boost::chrono::system_clock::now() << std::endl;
15     std::cout << boost::chrono::steady_clock::now() << std::endl;
16 }
17