Phasor 3.1.1
Stack VM based Programming Language
Loading...
Searching...
No Matches
BinaryRuntime_main.cpp
Go to the documentation of this file.
2#include <nativeerror.h>
3
4int main(int argc, char *argv[], char *envp[])
5{
6 try
7 {
8 Phasor::BinaryRuntime BinRT(argc, argv, envp);
9 return BinRT.run();
10 }
11 catch (const std::exception &e)
12 {
13 error(e.what());
14 return 1;
15 }
16
17 return 0;
18}
int main()
Definition LSP_main.cpp:121
CLI wrapper for running Phasor bytecode binaries.
#define error(msg)
Definition nativeerror.h:11