summaryrefslogtreecommitdiffstats
path: root/src/boost/tools/boost_install/test/chrono/quick.cpp
blob: c5c0c0dda23dc52d1c36dd6722c12e4808972e79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2018 Peter Dimov.
//
// Distributed under the Boost Software License, Version 1.0.
//
// See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt

#include <boost/chrono.hpp>
#include <iostream>

int main()
{
    std::cout << boost::chrono::system_clock::now() << std::endl;
    std::cout << boost::chrono::steady_clock::now() << std::endl;
}