summaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
authorAlfie Eagleton <67986414+TheAlfanator@users.noreply.github.com>2021-11-08 17:28:30 +0000
committerAlfie Eagleton <67986414+TheAlfanator@users.noreply.github.com>2021-11-08 17:28:30 +0000
commit03380520e95699ca41c74439f6216685ab8da6b7 (patch)
tree89a46bc6e1e85b2647d5b0e4bed529e2c0414798 /src/main.c
parent8157d9bee1c0d6ce0e59ac45bcad0d011cbe10a3 (diff)
parenta12094123dcacee41a7472031db6fe6027b083a7 (diff)
downloadesotericFORTRAN-03380520e95699ca41c74439f6216685ab8da6b7.tar.gz
esotericFORTRAN-03380520e95699ca41c74439f6216685ab8da6b7.zip
Merge branch 'main' of https://github.com/AlfieEagleton/EsotericProject
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/main.c b/src/main.c
deleted file mode 100644
index 1e6ed2b..0000000
--- a/src/main.c
+++ /dev/null
@@ -1,10 +0,0 @@
-#include <stdio.h>
-#include <string.h>
-int main(){
-char hello[11];
-strcpy(hello,"hello");
-if(5==5){
-strcpy(hello,"goodbye ");
-}
-printf("%s%d%s",hello,6," test");
-}