You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- 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
- }
|