#include #include #include #include #include #include "runtime.h" using namespace std; int g_argc; char **g_argv; string readfile(ifstream stream){ stream.seekg(0,ios::end); size_t len=stream.tellg(); stream.seekg(0,ios::beg); string contents; contents.resize(len); stream.read(&*contents.begin(),len); return contents; } int main(int argc,char **argv){ if(argc<2){ cerr<<"Call this interpreter with the Postrun source file"< tokens=tokenise(srcf); //for(const string &tok : tokens)cerr<<'['<