summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md14
1 files changed, 11 insertions, 3 deletions
diff --git a/README.md b/README.md
index af90198..cfdd559 100644
--- a/README.md
+++ b/README.md
@@ -17,10 +17,18 @@ of MurmurHash.
$ clib install jwerle/murmurhash.c
```
+source:
+
+```sh
+$ git clone git@github.com:jwerle/murmurhash.c.git
+$ cd murmurhash.c
+$ make
+$ make install
+```
+
## example
```c
-
#include <stdlib.h>
#include <string.h>
#include <murmurhash.h>
@@ -36,12 +44,12 @@ main (void) {
A command line executable is also available:
-```
+```sh
$ echo -n kinkajou | murmur
3067714808
```
-```
+```sh
$ echo -n panda | murmur --seed=10
1406483717
```