mirror of
https://github.com/vlang/v.git
synced 2025-09-15 23:42:28 +03:00
9 lines
164 B
V
9 lines
164 B
V
import szip
|
|
import os
|
|
|
|
fn test_compile() {
|
|
szip.open('test_compile.zip', szip.best_speed, szip.m_write) or {
|
|
assert false
|
|
}
|
|
os.rm('test_compile.zip') or { }
|
|
}
|