From b96daa4e9849ac9caf5c0dfcea8daac28267ea19 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Thu, 1 Dec 2016 10:40:43 -0700 Subject: Scripts are executable now! The main interactive interface doesn't work, and there's a lot left to do with the unit tests, other command line options, etc. but it's pretty exciting. I also still have to figure out how commands will work. I'm thinking they'll be stored in an Expression and executed by the engine as normal. --- src/expression.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/expression.h (limited to 'src/expression.h') diff --git a/src/expression.h b/src/expression.h new file mode 100644 index 0000000..e78b54b --- /dev/null +++ b/src/expression.h @@ -0,0 +1,16 @@ +#ifndef EXPRESSION_H +#define EXPRESSION_H + +#include +#include "token.h" + +class Expression : public Bu::List +{ +public: + Expression(); + virtual ~Expression(); + +private: +}; + +#endif -- cgit v1.2.3