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

test: fix vrepl and cast test errors

This commit is contained in:
yuyi
2020-05-17 08:13:08 +08:00
committed by GitHub
parent 81148fa2bd
commit 02fb393747
4 changed files with 55 additions and 51 deletions

View File

@@ -72,7 +72,7 @@ fn (r &Repl) current_source_code(should_add_temp_lines bool) string {
}
fn repl_help() {
println(util.full_v_version())
println(util.full_v_version(true))
println('
help Displays this information.
list Show the program so far.
@@ -83,7 +83,7 @@ fn repl_help() {
}
fn run_repl(workdir string, vrepl_prefix string) {
println(util.full_v_version())
println(util.full_v_version(true))
println('Use Ctrl-C or `exit` to exit')
file := os.join_path(workdir, '.${vrepl_prefix}vrepl.v')