Skip to content

Instantly share code, notes, and snippets.

View DBJDBJ's full-sized avatar
😬
Can't stop coding

dbj DBJDBJ

😬
Can't stop coding
View GitHub Profile
@DBJDBJ
DBJDBJ / coroutine-simple.cpp
Last active September 6, 2018 13:32 — forked from yizhang82/coroutine-simple.cpp
Simple C++ coroutine example
/*
until C++20 to build this with CL (MSVC)
/await compiler switch is required
*/
#include <future>
#include <iostream>
#ifndef __cpp_coroutines