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:
Alexander Medvednikov 2019-06-30 15:26:03 +02:00 committed by GitHub
parent 4885a68b9a
commit 392b49c661
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,7 +34,7 @@ GitHub marks V's code as written in Go. It's actually written in V, GitHub doesn
The compilation is temporarily slower for this release:
- Debug builds are used (use `./v -prod -o v .` to get faster compilation).
- Debug builds are used (use `./v -prod -o v compiler` to get faster compilation).
- vlib is recompiled with every program you build.
- The new formatter runs on every single token and slows the compiler down by ~20%. This will be taken care of.
- There are a lot of known issues that are quick to fix (like function lookups being O(n)).
@ -62,7 +62,6 @@ Or build without make:
curl -O https://raw.githubusercontent.com/vlang/vc/master/v.c
cc -std=gnu11 -w -o v v.c # Build it with Clang or GCC
./v -o v compiler # Use the resulting V binary to build V from V source
./v -o v compiler # Build the compiler again to make sure it works
```
That's it! Now you have a V executable at `[path to V repo]/v`.
@ -111,7 +110,7 @@ $ v run hello_world.v
hello world
$ v
V 0.1.9
V 0.1.x
Use Ctrl-D to exit
>>> println('hello world')