Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
tests
/
consts
/
const_markused_test.v
6
lines
·
5
sloc
·
97 bytes
·
66b75c28b8c9e6a63c5ee70443a0bbb631a9c8f7
Raw
1
import
my_utils
2
3
fn
test_main() {
4
v := f64(1.0 / 8)
5
assert my_utils.my_round(v, 2) ==
'0.13'
6
}
7