mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
16 lines
175 B
V
16 lines
175 B
V
|
module builtin
|
||
|
|
||
|
pub fn (x f32) str() string {
|
||
|
res := ''
|
||
|
#res.str = x.val + ''
|
||
|
|
||
|
return res
|
||
|
}
|
||
|
|
||
|
pub fn (x f64) str() string {
|
||
|
res := ''
|
||
|
#res.str = x.val + ''
|
||
|
|
||
|
return res
|
||
|
}
|