Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
slow_tests
/
inout
/
vscript_using_generics_in_os.vsh
7
lines
·
7
sloc
·
194 bytes
·
b6ecd634e3174d657c60a061ad74d31705f12f5f
Raw
1
chdir(temp_dir())!
2
test_file_name :=
'test_file'
3
write_file_array(test_file_name, [u8(0xff), 0xff, 0xff, 0xff])!
4
defer
{
5
rm(test_file_name)
or
{}
6
}
7
println(read_file_array[u8](test_file_name))
8