CPPNotebook
extends Nodebook
Usage
Setup
const Nodebook = require('nodejs-notebook');
const main = new Nodebook.CPPNotebook('main');main.note('#include <iostream>\n\nusing namespace std;\nint main() {\n\ncout << "hello world"\n}'
// Inserts this long line of code that should output "hello world"main.comment('This needs editing, Franchis!');
// Inserts "/* This needs editing , Franchis! */"Last updated