Skip to content

Instantly share code, notes, and snippets.

View sponge's full-sized avatar
💭
hello what is this why is this

sponge sponge

💭
hello what is this why is this
View GitHub Profile
@tek-nishi
tek-nishi / QuickJS_Sample.cpp
Created June 15, 2020 02:02
QuickJS test code.
#include <iostream>
#include <string>
#include <fstream>
#include <quickjs.h>
std::string readTextFile(const std::string& path)
{
std::ifstream ifs(path);
return std::string(std::istreambuf_iterator<char>(ifs),