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

compiler: stage 2 of vhash support

This commit is contained in:
Delyan Angelov
2019-09-11 01:12:46 +03:00
committed by Alexander Medvednikov
parent a53c69de38
commit bc606415c3
2 changed files with 7 additions and 11 deletions

View File

@@ -51,9 +51,9 @@ fn (r mut Repl) function_call(line string) bool {
}
fn repl_help() {
versionhash := vhash()
version_hash := vhash()
println('
V $Version $versionhash
V $Version $version_hash
help Displays this information.
Ctrl-C, Ctrl-D, exit Exits the REPL.
clear Clears the screen.
@@ -61,8 +61,8 @@ V $Version $versionhash
}
fn run_repl() []string {
versionhash := vhash()
println('V $Version $versionhash')
version_hash := vhash()
println('V $Version $version_hash')
println('Use Ctrl-C or `exit` to exit')
file := '.vrepl.v'
temp_file := '.vrepl_temp.v'