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

cmd/v: remove debug prints

This commit is contained in:
Alexander Medvednikov 2020-04-10 18:18:50 +02:00
parent f76931c01e
commit fc4a05741c

View File

@ -104,8 +104,8 @@ fn main() {
else {} else {}
} }
if command in ['run', 'build'] || command.ends_with('.v') || os.exists(command) { if command in ['run', 'build'] || command.ends_with('.v') || os.exists(command) {
println('command') //println('command')
println(prefs.path) //println(prefs.path)
builder.compile(command, prefs) builder.compile(command, prefs)
return return
} }