[apps/code] Remove base python script and add mathsup.py (#50)

This commit is contained in:
Mino1289
2021-10-25 16:27:21 +02:00
committed by GitHub
parent e72b0f633e
commit e4961563e9
4 changed files with 5 additions and 106 deletions

View File

@@ -9,10 +9,6 @@ class ScriptTemplate {
public:
constexpr ScriptTemplate(const char * name, const char * value) : m_name(name), m_value(value) {}
static const ScriptTemplate * Empty();
static const ScriptTemplate * Squares();
static const ScriptTemplate * Mandelbrot();
static const ScriptTemplate * Polynomial();
static const ScriptTemplate * Parabola();
const char * name() const { return m_name; }
const char * content() const { return m_value + Script::StatusSize(); }
const char * value() const { return m_value; }