v2 / vlib / builtin / js / float.js.v
15 lines · 11 sloc · 175 bytes · 72089c4feb3de45503de9937b8f75e0b79590c34
Raw
1module builtin
2
3pub fn (x f32) str() string {
4 res := ''
5 #res.str = x.val + ''
6
7 return res
8}
9
10pub fn (x f64) str() string {
11 res := ''
12 #res.str = x.val + ''
13
14 return res
15}
16