A "Best of the Best Practices" (BOBP) guide to developing in Python.
- "Build tools for others that you want to be built for you." - Kenneth Reitz
- "Simplicity is alway better than functionality." - Pieter Hintjens
#include <iostream> | |
#include <cmath> | |
#include <vector> | |
#include <cassert> | |
#include <memory> | |
enum NodeOp { | |
OP_CONST, | |
OP_ADD, | |
OP_MUL, |