1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

cgen: fix string interpolation float type

This commit is contained in:
yuyi
2020-04-16 13:30:25 +08:00
committed by GitHub
parent 332d52f459
commit 54a02996f2
2 changed files with 4 additions and 4 deletions

View File

@ -18,12 +18,12 @@ pub fn complex(re f64, im f64) Complex {
// To String method
pub fn (c Complex) str() string {
mut out := '$c.re'
mut out := '${c.re:f}'
out += if c.im >= 0 {
'+$c.im'
'+${c.im:f}'
}
else {
'$c.im'
'${c.im:f}'
}
out += 'i'
return out