From 099c1cc48b9cd4ff977a668adfb22c798d0cfd77 Mon Sep 17 00:00:00 2001 From: Alex Medvednikov Date: Sun, 23 Jun 2019 11:37:33 +0200 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d1feb5bda8..2489d63f5a 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# The V Programming Language +# The V Programming Language 0.0.12 https://vlang.io @@ -56,7 +56,7 @@ git clone https://github.com/vlang/v cd v/compiler wget https://vlang.io/v.c # Download the V compiler's source translated to C cc -std=c11 -w -o vc v.c # Build it with Clang or GCC -./vc -o v . # Use the resulting V binary to build V from V source +./vc -o v . && rm vc # Use the resulting V binary to build V from V source, delete the old compiler ./v -o v . # Bootstrap the compiler to make sure it works ```