mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
os: join => join_path
This commit is contained in:
@@ -77,8 +77,8 @@ pub fn run_repl(workdir string, vrepl_prefix string) []string {
|
||||
println(version)
|
||||
println('Use Ctrl-C or `exit` to exit')
|
||||
|
||||
file := os.join( workdir, '.${vrepl_prefix}vrepl.v' )
|
||||
temp_file := os.join( workdir, '.${vrepl_prefix}vrepl_temp.v')
|
||||
file := os.join_path(workdir, '.${vrepl_prefix}vrepl.v')
|
||||
temp_file := os.join_path(workdir, '.${vrepl_prefix}vrepl_temp.v')
|
||||
mut prompt := '>>> '
|
||||
defer {
|
||||
println('')
|
||||
|
||||
Reference in New Issue
Block a user