25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #define _CRT_SECURE_NO_WARNINGS
- #define _CRT_SECURE_NO_DEPRECATE
-
- #include <stdlib.h>
- #include <stdio.h>
- #include <time.h>
- #include <string.h>
- #include <cmath>
- #include <ctype.h>
- #include <stdarg.h>
- #include <functional>
-
- #ifdef _MSC_VER
- # include <direct.h>
- # include <windows.h>
-
- #else
- # include <unistd.h>
- # include <signal.h>
- #endif
-
- #include "./ftb/arraylist.hpp"
- #include "./ftb/macros.hpp"
- #include "./ftb/profiler.hpp"
- #include "./ftb/hashmap.hpp"
-
- namespace Slime {
- # include "./defines.cpp"
- # include "./platform.cpp"
- # include "./structs.cpp"
- # include "./forward_decls.cpp"
- # include "./memory.cpp"
- # include "./gc.cpp"
- # include "./lisp_object.cpp"
- # include "./error.cpp"
- # include "./io.cpp"
- # include "./env.cpp"
- # include "./parse.cpp"
- # include "./eval.cpp"
- # include "./visualization.cpp"
- # include "./docgeneration.cpp"
- # include "./built_ins.cpp"
- # include "./testing.cpp"
- # include "./undefines.cpp"
- }
|