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

👍 Remove unnecessary spaces

This commit is contained in:
Ryota Ikezawa 2019-06-25 00:13:02 +09:00 committed by Alex Medvednikov
parent 2fee6bb29f
commit 601cc4a012

View File

@ -36,7 +36,7 @@ The compiler itself is located in `compiler/`
It has only 8 files (soon to be 7):
1. `main.v` The entry point.
1. `main.v` The entry point.
- V figures out the build mode.
- Constructs the compiler object (`struct V`).
- Creates a list of .v files that need to be parsed.
@ -128,7 +128,7 @@ v hello_world.v && ./hello_world # or simply
v run hello_world.v # This builds the program and runs it right away
v word_counter.v && ./word_counter cinderella.txt
v run news_fetcher.v
v run news_fetcher.v
v run tetris.v
```