v/vlib/os2/os2_test.v
2019-10-09 06:35:58 +03:00

9 lines
116 B
V

import os2
fn test_open() {
$if mac {
f := os2.create('os2.test')
f.writeln('hello world!')
f.close()
}
}