simpleminded ascii to floating point conversion

R=rsc
DELTA=111  (107 added, 0 deleted, 4 changed)
OCL=18720
CL=18725
This commit is contained in:
Rob Pike 2008-11-06 16:32:28 -08:00
parent 335a5236e7
commit 175dd773e6
3 changed files with 110 additions and 3 deletions

View file

@ -124,7 +124,7 @@ func integer(v int64) string {
}
func floatingpoint(v float64) string {
return strings.dtoa(v);
return strings.f64toa(v);
}
func ValueToString(val Value) string {