Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
builtin
/
js
/
float.js.v
15
lines
·
11
sloc
·
175 bytes
·
72089c4feb3de45503de9937b8f75e0b79590c34
Raw
1
module
builtin
2
3
pub
fn
(x f32) str() string {
4
res :=
''
5
#res.str = x.val +
''
6
7
return
res
8
}
9
10
pub
fn
(x f64) str() string {
11
res :=
''
12
#res.str = x.val +
''
13
14
return
res
15
}
16