v2 / vlib / v / tests / project_issue_26873 / import_os.v
7 lines · 5 sloc · 72 bytes · 80536d68d80dee2617feadebd55c073fe349ac3e
Raw
1module main
2
3import os
4
5fn temp_root() string {
6 return os.temp_dir()
7}
8