Started work on implementing Markdown parser

This commit is contained in:
kilroy
2025-11-29 21:19:07 -05:00
parent 2a7bd4bef7
commit 767085b160

View File

@@ -1,12 +1,17 @@
#include "../include/lenstr.h"
#include <ctype.h>
#include <stdbool.h>
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
int main(void)
{
string a = StrLit("Hello, world!");
PrintStr(a);
FILE *mdFile = fopen("../tests/markdown_specification.md", "r");
return 0;
}