[INIT] Ready, set, go!

This commit is contained in:
LDA 2024-06-12 13:31:30 +02:00
commit 6d62c6c1a2
3 changed files with 45 additions and 0 deletions

9
src/Main.c Normal file
View file

@ -0,0 +1,9 @@
#include <Cytoplasm/Log.h>
int
Main(void)
{
Log(LOG_INFO, "%s - v%s", NAME, VERSION);
/* TODO: The rest of Parsee. */
return 0;
}