From 889d564f43927dc4fbe15ee8f67cb720776aaf63 Mon Sep 17 00:00:00 2001 From: Henrixounez Date: Sun, 23 Jun 2019 03:15:10 +0200 Subject: [PATCH] main.v: added run option example in help message --- compiler/main.v | 3 +++ 1 file changed, 3 insertions(+) diff --git a/compiler/main.v b/compiler/main.v index 0d4b132154..9fb7afd06e 100644 --- a/compiler/main.v +++ b/compiler/main.v @@ -833,6 +833,9 @@ v -prod file.v - To specify the executable\'s name: v -o program file.v + +- To execute a program without creating an executable: +v run file.v ' )