Files
c2/v0/ast.h
T

17 lines
216 B
C

/**
* Holds the AST model
*/
#ifndef AST_H
#define AST_H
/**
* The top-level model.
* Every file matches an entire Module.
*/
typedef struct {
/// @brief The name of the module.
char* name;
} Module;
#endif