readme: more syntax highlighting

pull/2353/head
Danny Feliz 2019-10-15 02:03:21 -04:00 committed by Alexander Medvednikov
parent 8ebb3a0fb8
commit 195da8ef3f
1 changed files with 3 additions and 3 deletions

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