diff options
author | dx <aryadevchavali1@gmail.com> | 2020-05-06 00:59:56 +0100 |
---|---|---|
committer | dx <aryadevchavali1@gmail.com> | 2020-05-06 00:59:56 +0100 |
commit | ff6213c0f2ac184686c169fbc308178023525092 (patch) | |
tree | 62e16f45c79969ae1da0517999639bc8f8f98dbb /Converter/src/main.c | |
parent | a91a10bced3fe37b4a344682df96b23f74c03f5b (diff) | |
download | mdhtml-ff6213c0f2ac184686c169fbc308178023525092.tar.gz mdhtml-ff6213c0f2ac184686c169fbc308178023525092.tar.bz2 mdhtml-ff6213c0f2ac184686c169fbc308178023525092.zip |
+C project via https://github.com/odavep/CTemplate
I'll try implementing my current system with it's current features into C
Diffstat (limited to 'Converter/src/main.c')
-rw-r--r-- | Converter/src/main.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Converter/src/main.c b/Converter/src/main.c new file mode 100644 index 0000000..aed773b --- /dev/null +++ b/Converter/src/main.c @@ -0,0 +1,6 @@ +#include <stdio.h> + +int main() { + printf("Hello, world!\n"); + return 0; +} |