added more code

This commit is contained in:
Andrew W
2022-08-28 16:12:16 -05:00
parent 5a2894ed1b
commit 7dabaef6f6
2345 changed files with 1343530 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
CC = gcc
CFLAGS = -Wall
hello: helloworld.o hellofunction.o
$(CC) $(CFLAGS) helloworld.o hellofunction.o -o hello
hellorun.o: hello
+1
View File
@@ -0,0 +1 @@
void greetMe(void);
+3
View File
@@ -0,0 +1,3 @@
int main(){
greetMe();
}
+3
View File
@@ -0,0 +1,3 @@
void greetMe(){
printf("Hello, World!/n");
}