Skip to content

Instantly share code, notes, and snippets.

View freeacetone's full-sized avatar

acetone freeacetone

View GitHub Profile
@mcleary
mcleary / Timer.cpp
Last active March 27, 2024 02:42
C++ Timer using std::chrono
#include <iostream>
#include <chrono>
#include <ctime>
#include <cmath>
class Timer
{
public:
void start()
{