Skip to content

Commit

Permalink
h
Browse files Browse the repository at this point in the history
  • Loading branch information
Savetheinternet committed Nov 5, 2011
0 parents commit 5dd57ae
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 0 deletions.
15 changes: 15 additions & 0 deletions Makefile
@@ -0,0 +1,15 @@
CFLAGS = -Wall -std=c99

SRCS = h.c
OBJS = $(SRCS:.c=.o)
BIN = h


all: $(BIN)

$(BIN): $(OBJS)
$(CC) -o $(BIN) $(OBJS)

clean:
$(RM) $(BIN) $(OBJS)

7 changes: 7 additions & 0 deletions README.md
@@ -0,0 +1,7 @@
## About
H is a small program which, upon execution, prints the lowercase letter `h` (ASCII character 104).

## Usage
`make`
`./h`

8 changes: 8 additions & 0 deletions h.c
@@ -0,0 +1,8 @@
#include <stdio.h>

int
main(int argc, char *argv[])
{
printf("h\n");
}

0 comments on commit 5dd57ae

Please sign in to comment.