1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

Update README.md

This commit is contained in:
Alex Medvednikov 2019-06-23 11:37:33 +02:00 committed by GitHub
parent f59962a92f
commit 099c1cc48b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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
```