diff options
author | bpc2003 <wpesfriendnva@gmail.com> | 2025-03-10 17:06:53 -0400 |
---|---|---|
committer | bpc2003 <wpesfriendnva@gmail.com> | 2025-03-10 17:06:53 -0400 |
commit | 4fdc06b0cfe7acf98776719f218f5a5b2cd069c0 (patch) | |
tree | 8deb8bd45cc62375112f8cbd939fd9b37c23c7aa /src/main.c | |
parent | 2011c1e008055005bf980acbff549c8f46a34f25 (diff) |
Finished mdb.h Getting started on main.c
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -0,0 +1,9 @@ +#include <stdio.h> + +#include "lib/mdb.h" + +int main(int argc, char **argv) +{ + printf("Hello, World!\n"); + return 0; +} |