mirror of
https://github.com/vlang/v.git
synced 2025-09-14 23:12:33 +03:00
11 lines
124 B
V
11 lines
124 B
V
import os2
|
|
|
|
fn test_open() {
|
|
/*
|
|
$if mac {
|
|
f := os2.create('os2.test')
|
|
f.writeln('hello world!')
|
|
f.close()
|
|
}
|
|
*/
|
|
}
|