init commit
This commit is contained in:
6
learncthehardway/exc1/Makefile
Normal file
6
learncthehardway/exc1/Makefile
Normal file
@ -0,0 +1,6 @@
|
||||
CFLAGS=-Wall -g
|
||||
|
||||
clean:
|
||||
rm -f ex1
|
||||
all:
|
||||
ex1
|
BIN
learncthehardway/exc1/a.out
Executable file
BIN
learncthehardway/exc1/a.out
Executable file
Binary file not shown.
8
learncthehardway/exc1/ex1.c
Normal file
8
learncthehardway/exc1/ex1.c
Normal file
@ -0,0 +1,8 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
puts("Hello world.");
|
||||
|
||||
return 0;
|
||||
}
|
Reference in New Issue
Block a user