commit | 323883d4298a955dde3fbeddc7537c53356a108f | [log] [tgz] |
---|---|---|
author | swissChili <swisschili@fastmail.com> | Sun Feb 20 16:35:23 2022 -0800 |
committer | swissChili <swisschili@fastmail.com> | Sun Feb 20 16:35:23 2022 -0800 |
tree | f4411e684d13987d8b03af1c75d81dbd3afe1f43 | |
parent | 2506b927a8fcaa9f08064b63e6d20be931e20f26 [diff] [blame] |
Fix test regression: incomplete errors no longer cause var parsing to fail
diff --git a/StdLib.h b/StdLib.h new file mode 100644 index 0000000..61fc2a6 --- /dev/null +++ b/StdLib.h
@@ -0,0 +1,15 @@ +#pragma once + +#include "Function.h" +#include "Evaluator.h" + +class StdLib { +public: + StdLib(); + + void load(Evaluator &eval); + +private: + Function _print{"Print"}, + _prout{"Prout"}; +};