From 7a9bd229b3105a7be55503b1968c55baf511663d Mon Sep 17 00:00:00 2001
From: Karchnu <karchnu@karchnu.fr>
Date: Sat, 5 Dec 2020 01:05:58 +0100
Subject: [PATCH] README with build explanation, gitignore.

---
 .gitignore | 1 +
 README.md  | 6 ++++++
 2 files changed, 7 insertions(+)
 create mode 100644 .gitignore

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..11961d5
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+src/zig-cache
\ No newline at end of file
diff --git a/README.md b/README.md
index 598147f..88a4482 100644
--- a/README.md
+++ b/README.md
@@ -1,3 +1,9 @@
 This is an experimental repository.
 
 We just want to try Zig code, writing basic functions and commands.
+
+## How to compile stuff.
+
+```sh
+zig build-exe src/command.zig
+```