Z-Sharp/Slang/main.h
sam-astro 4f960ce685 Revert "Rename to StuLang"
This reverts commit c11f089178b58189558dad072df29a8fd3beac13.
2022-01-15 15:53:55 -05:00

11 lines
254 B
C++

#ifndef MAIN_H
#define MAIN_H
using namespace std;
boost::any ExecuteFunction(const string& functionName, const vector<boost::any>& inputVarVals);
boost::any EvalExpression(const string& ex, unordered_map<string, boost::any>& variableValues);
#endif