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

12 lines
128 B
V
Raw Normal View History

// import os2
2019-10-07 01:31:01 +03:00
fn test_open() {
2019-10-09 06:41:55 +03:00
/*
$if macos {
2019-10-07 01:31:01 +03:00
f := os2.create('os2.test')
f.writeln('hello world!')
f.close()
}
2019-10-09 06:41:55 +03:00
*/
}