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

szip: change documentation style (#8883)

This commit is contained in:
StunxFS
2021-02-22 08:59:36 -04:00
committed by GitHub
parent b2cdd2cac0
commit ac1c4932e7
2 changed files with 41 additions and 144 deletions

View File

@ -1,7 +1,7 @@
import szip
import os
fn test_compile() {
fn test_szip() {
mut z := szip.open('test_compile.zip', szip.best_speed, szip.m_write) or {
assert false
return
@ -11,3 +11,4 @@ fn test_compile() {
os.rm('test_compile.zip') or { }
}
}