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

os: make os module handle large files (#9439)

This commit is contained in:
Bastian Buck
2021-03-26 07:51:55 +01:00
committed by GitHub
parent 91ea76797a
commit 69dff4b384
5 changed files with 158 additions and 46 deletions

View File

@ -120,6 +120,6 @@ pub fn used_tools_must_exist(tools []string) {
pub fn show_sizes_of_files(files []string) {
for f in files {
size := os.file_size(f)
println('${size:10d} $f')
println('$size $f') // println('${size:10d} $f')
}
}