mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
12 lines
128 B
V
12 lines
128 B
V
//import os2
|
|
|
|
fn test_open() {
|
|
/*
|
|
$if macos {
|
|
f := os2.create('os2.test')
|
|
f.writeln('hello world!')
|
|
f.close()
|
|
}
|
|
*/
|
|
}
|