feat: first commit
This commit is contained in:
commit
701734097e
13 changed files with 2655 additions and 0 deletions
8
xcc.c
Normal file
8
xcc.c
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
#include "lexer.h"
|
||||
#include <string.h>
|
||||
|
||||
int main(void)
|
||||
{
|
||||
char *source = "int main(void)\n{\n1+1;\n}\n";
|
||||
lexer *l = lexer_init(source, strlen(source));
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue