11 lines
171 B
C
11 lines
171 B
C
#include <std/base.h>
|
|
|
|
typedef enum CompilerBackend : u8
|
|
{
|
|
COMPILER_BACKEND_NEST = 'm',
|
|
// COMPILER_BACKEND_LLVM,
|
|
COMPILER_BACKEND_COUNT,
|
|
} CompilerBackend;
|
|
|
|
|