Yerbacon/src/headers/transpiler/implementations/Py.hpp

10 lines
203 B
C++

#ifndef PY_HPP
#define PY_HPP PyTarget
struct PyTarget: Target {
void on(const StandardComponents::Define &parseComponent) override {
output << parseComponent.name << " = ";
}
};
#endif