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-26 18:04:10 +02:00 committed by GitHub
parent 92ecd0ca7c
commit e6d8612392
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -71,7 +71,7 @@ That's it! Now you have a V executable at `v/compiler/v`.
You can create a symlink so that it's globally available: You can create a symlink so that it's globally available:
``` ```
sudo ln -s ~/code/v/compiler/v /usr/local/bin/v sudo ln -s [path to V repo]/compiler/v /usr/local/bin/v
``` ```
### Windows ### Windows
@ -105,7 +105,7 @@ Now if you want, you can start tinkering with the compiler. If you introduce a b
``` ```
v hello_world.v && ./hello_world # or simply 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 run news_fetcher.v v run news_fetcher.v
@ -120,14 +120,14 @@ In order to build Tetris and anything else using the graphics module, you will n
If you plan to use the http package, you also need to install libcurl. If you plan to use the http package, you also need to install libcurl.
``` ```
Arch: macOS:
sudo pacman -S glfw-x11 curl freetype2 brew install glfw freetype curl
Ubuntu: Ubuntu:
sudo apt install libglfw3 libglfw3-dev libfreetype6-dev libcurl3-dev sudo apt install libglfw3 libglfw3-dev libfreetype6-dev libcurl3-dev
macOS: Arch:
brew install glfw freetype curl sudo pacman -S glfw-x11 curl freetype2
``` ```
glfw and libcurl dependencies will be removed soon. glfw and libcurl dependencies will be removed soon.