// Executes the Wren script at [path] in a new VM.
//
// Exits if the script failed or could not be loaded.
void ;
// Runs the Wren interactive REPL.
int ;
// Gets the currently running VM.
WrenVM* ;
// Gets the event loop the VM is using.
uv_loop_t* ;
// Set the exit code the CLI should exit with when done.
void ;
// Adds additional callbacks to use when binding foreign members from Wren.
//
// Used by the API test executable to let it wire up its own foreign functions.
// This must be called before calling [createVM()].
void ;