- namespace Globals {
- char* bin_path = nullptr;
- Log_Level log_level = Log_Level::Debug;
-
- Array_List<void*> load_path;
- namespace Current_Execution {
- Array_List<Lisp_Object*> call_stack;
- Array_List<Environment*> envi_stack;
- }
-
- Error* error = nullptr;
- #ifdef _DONT_BREAK_ON_ERRORS
- bool breaking_on_errors = false;
- #else
- bool breaking_on_errors = true;
- #endif
- }
|