v2 / vlib / v / tests / consts / const_markused_test.v
6 lines · 5 sloc · 97 bytes · 66b75c28b8c9e6a63c5ee70443a0bbb631a9c8f7
Raw
1import my_utils
2
3fn test_main() {
4 v := f64(1.0 / 8)
5 assert my_utils.my_round(v, 2) == '0.13'
6}
7