Skip to content

Instantly share code, notes, and snippets.

View NateSeymour's full-sized avatar

Nathan Seymour NateSeymour

  • Chicago, Illinois
  • 13:07 (UTC -05:00)
View GitHub Profile
@NateSeymour
NateSeymour / Promise.h
Created March 11, 2019 21:23
Javascript promises recreated in C++
#pragma once
#include <mutex>
namespace js {
template<class C> class Promise
{
public:
bool failure = false;
std::exception exception;