Update README.md

pull/315/head
Alex Medvednikov 2019-04-25 11:38:47 +02:00 committed by GitHub
parent f993484e76
commit 91749d81f5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 4 deletions

View File

@ -6,15 +6,17 @@ https://vlang.io
Documentation: https://vlang.io/docs Documentation: https://vlang.io/docs
Twitter: https://twitter.com/vlang_io Twitter: https://twitter.com/v_language
   
## Fast compilation ## Fast compilation
V compiles 1.5 million lines of code per second per CPU core V compiles 1.5 million lines of code per second per CPU core.
Such speed is achieved by direct machine code generation.
``` ```
cd doom3/
wc -l doom3.v # 458 713 wc -l doom3.v # 458 713
time v doom3.v # 0.5s time v doom3.v # 0.5s
``` ```
@ -43,7 +45,7 @@ s << 'V is '
s << 'awesome' s << 'awesome'
println(s.len) println(s.len)
``` ```
Read about translating Doom & Doom 3, LevelDB, SQLite (coming in March). Read about translating Doom & Doom 3, LevelDB, SQLite (coming in April).
## 400 KB compiler with zero dependencies ## 400 KB compiler with zero dependencies
The entire V language and its standard library is less than 400 KB. You can build V in 0.3 seconds. The entire V language and its standard library is less than 400 KB. You can build V in 0.3 seconds.