v2 / vlib / v / fmt / tests / conditional_import_expected.vv
7 lines · 6 sloc · 93 bytes · 2a1fea4ce0b121eaa6c66dad5a29aac9a73d7541
Raw
1module main
2
3$if linux {
4 import math { max }
5} $else $if windows {
6 import arrays { max }
7}
8