Skip to content

Instantly share code, notes, and snippets.

@jamesbar54
jamesbar54 / Timer.cpp
Created April 29, 2025 17:37 — forked from mcleary/Timer.cpp
C++ Timer using std::chrono
#include <iostream>
#include <chrono>
#include <ctime>
#include <cmath>
class Timer
{
public:
void start()
{