/C-Javascript

Brings Javascript goodness to C++ (This is not a serious project)

Primary LanguageC++The UnlicenseUnlicense

C++ Javascript

Brings Javascript goodness to C++

This is a header-only library. Feel free to add improvements.

Example

#include "CppJS.h"

function myFunction() {
  var a = 0;
  var b = 0;
  return a + b;
}