From 69a363472f3a52f10c82436a1f9be5daca73bf7a Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Wed, 26 Jun 2019 17:58:59 +0200 Subject: [PATCH] Update README.md --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 91b8e86de7..fb74d90f42 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ Or build without make: wget https://raw.githubusercontent.com/vlang/vc/master/v.c cc -std=gnu11 -w -o v v.c # Build it with Clang or GCC ./v -o v . # Use the resulting V binary to build V from V source -./v -o v . # Bootstrap the compiler again to make sure it works +./v -o v . # Build the compiler again to make sure it works ``` That's it! Now you have a V executable at `v/compiler/v`. @@ -85,8 +85,11 @@ V temporarily can't be compiled with Visual Studio. This will be fixed asap. ### Testing ``` -$ v +$ cd examples +$ v run hello_world.v +hello world +$ v V 0.1.2 Use Ctrl-D to exit