Update README.md

pull/509/head^2
Alex Medvednikov 2019-06-24 16:07:41 +02:00 committed by GitHub
parent 5932764088
commit b494ee34e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -15,7 +15,7 @@ Installing V: https://github.com/vlang/v#installing-v-from-source
- Simplicity: the language can be learned in half an hour, less if you already know Go
- Fast compilation: ~100k loc right now, ~1.2 million loc once x64 generation is mature enough
- Easy to develop: the entire language compiles in less than a second
- Easy to develop: V compiles itself in less than a second
- Performance: within 5% of C
- Safety: no null, no globals, no UB, immutability by default
- C to V translation
@ -26,6 +26,8 @@ Installing V: https://github.com/vlang/v#installing-v-from-source
V 1.0 release is planned for December 2019.
GitHub marks V's code as written in Go. It's actually writtein in V, GitHub doesn't support the language yet.
## Code Structure
I tried making the code of the compiler and vlib as simple and readable as possible. One of V's goals is to be open to developers with different levels of experience in compiler development. Compilers don't need to be black boxes full of magic that only few people understand.