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

parser: fix mut args with the new syntax; checker: fmt

This commit is contained in:
Alexander Medvednikov
2020-05-11 14:16:17 +02:00
parent 2a40665919
commit ce03761375
4 changed files with 53 additions and 31 deletions

View File

@ -6,6 +6,7 @@ module http
import os
pub fn download_file(url, out string) bool {
println('download file url=$url out=$out')
s := get(url) or {
return false
}