1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

readme: more syntax highlighting

This commit is contained in:
Danny Feliz 2019-10-15 02:03:21 -04:00 committed by Alexander Medvednikov
parent 8ebb3a0fb8
commit 195da8ef3f

View File

@ -69,7 +69,7 @@ Otherwise, follow these instructions:
You can create a `/usr/local/bin/v` symlink so that V is globally available:
```
```bash
sudo ./v symlink
```
@ -94,7 +94,7 @@ Make sure V can compile itself:
v v.v
```
```
```bash
$ v
V 0.1.x
Use Ctrl-C or `exit` to exit
@ -105,7 +105,7 @@ hello world
```
```
```bash
cd examples
v hello_world.v && ./hello_world # or simply
v run hello_world.v # this builds the program and runs it right away