#include "CrossLang.hpp" #include using namespace Tesses::Framework; using namespace Tesses::CrossLang; int main(int argc, char** argv) { TF_Init(); if(argc < 2) { printf("USAGE: %s \n",argv[0]); return 1; } GC gc; gc.Start(); GCList ls(gc); TRootEnvironment* env = TRootEnvironment::Create(ls, TDictionary::Create(ls)); Tesses::Framework::Filesystem::LocalFilesystem fs; env->LoadFileWithDependencies(&gc, &fs, fs.SystemToVFSPath(argv[1])); TStd::RegisterStd(&gc,env); TList* args = TList::Create(ls); for(int arg=1;argAdd(std::string(argv[arg])); auto res = env->CallFunction(ls,"main",{args}); int64_t iresult; if(GetObject(res,iresult)) return (int)iresult; return 0; }