Update README.md

pull/567/head
Alex Medvednikov 2019-06-25 02:11:18 +02:00 committed by GitHub
parent a1b6e4e523
commit 302f93cbe5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
# The V Programming Language 0.1.0
# The V Programming Language 0.1.1
https://vlang.io
@ -81,7 +81,7 @@ make
wget https://vlang.io/v.c # Download the V compiler's source translated to C
cc -std=gnu11 -w -o vc v.c # Build it with Clang or GCC
./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 (this will also do initial setup)
./v -o v . # Bootstrap the compiler to make sure it works
```
That's it! Now you have a V executable at `v/compiler/v`.