Skip to content

Instantly share code, notes, and snippets.

View githole's full-sized avatar

hole githole

View GitHub Profile
#include <chrono>
struct TIMER final
{
std::chrono::system_clock::time_point start, end;
const char* str;
TIMER(const char* s) : str(s)
{
start = std::chrono::system_clock::now();
}
@githole
githole / poyo.c
Created May 8, 2012 06:50
what's that?
#include <stdio.h>
int main() {
printf("hello, Poyo world.\n");
return 0;
}