view time.cc @ 2:ed80bcd28852

cclib
author Lewin Bormann <lbo@spheniscida.de>
date Mon, 06 Mar 2023 10:13:49 +0100
parents ec6009463e1c
children
line wrap: on
line source

#include <chrono>
#include <iostream>

#include "lib/exec.h"

using namespace std;

int main(void) {

    benchmarkit([]() { int a = 5 + 6; }, "simple add");

    return 0;
}