update help text

pull/1049/head
Alexander Medvednikov 2019-06-24 14:43:17 +02:00
parent baa4f9d0c9
commit da1e1f34fc
1 changed files with 11 additions and 5 deletions

View File

@ -841,20 +841,26 @@ fn run_repl() []string {
// This definitely needs to be better :) // This definitely needs to be better :)
const ( const (
HelpText = ' HelpText = '
- To build a V program: - Build a V program:
v file.v v file.v
- To get current V version: - Get current V version:
v version v version
- To build an optimized executable: - Build an optimized executable:
v -prod file.v v -prod file.v
- To specify the executable\'s name: - Specify the executable\'s name:
v -o program file.v v -o program file.v
- To build and execute a V program : - Build and execute a V program:
v run file.v v run file.v
- Obfuscate the resulting binary:
v -obf -prod build file.v
- Test:
v string_test.v
' '
) )