mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-20 03:20:18 +00:00
16 lines
264 B
C
16 lines
264 B
C
#include "pocketpy/pocketpy.h"
|
|
|
|
#include "pocketpy/common/utils.h"
|
|
#include "pocketpy/objects/object.h"
|
|
#include "pocketpy/interpreter/vm.h"
|
|
|
|
|
|
py_Error* py_lasterror(){
|
|
return pk_current_vm->last_error;
|
|
}
|
|
|
|
void py_Error__print(py_Error* self){
|
|
abort();
|
|
}
|
|
|