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 16:13:56 +02:00 committed by GitHub
parent d71410dff5
commit 6cbecac93c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,6 +6,8 @@ Documentation: https://vlang.io/docs
Twitter: https://twitter.com/v_language Twitter: https://twitter.com/v_language
Installing V: https://github.com/vlang/v#installing-v-from-source
## Code Structure ## Code Structure
@ -107,8 +109,8 @@ v hello_world.v && ./hello_world # or simply
v run hello_world.v # This builds the program and runs it right away v run hello_world.v # This builds the program and runs it right away
v word_counter.v && ./word_counter cinderella.txt v word_counter.v && ./word_counter cinderella.txt
v news_fetcher.v && ./news_fetcher v run news_fetcher.v
v tetris.v && ./tetris v run tetris.v
``` ```
In order to build Tetris and anything else using the graphics module, you will need to install glfw and freetype. In order to build Tetris and anything else using the graphics module, you will need to install glfw and freetype.