v/vlib/os2/os2_test.v

10 lines
116 B
V
Raw Normal View History

2019-10-07 00:31:01 +02:00
import os2
fn test_open() {
$if mac {
f := os2.create('os2.test')
f.writeln('hello world!')
f.close()
}
}