👍 Remove unnecessary spaces

pull/524/head
Ryota Ikezawa 2019-06-25 00:13:02 +09:00 committed by Alex Medvednikov
parent 2fee6bb29f
commit 601cc4a012
1 changed files with 2 additions and 2 deletions

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
```