$Search: float, double, float32, float64

Go has floating point numbers corresponding to the IEEE 754 standard:

Zero value of float32 and float64 is 0.0.

Convert float to string with FormatFloat

https://codeeval.dev/gist/266779f2c4f399ade5b270b0cd59b52f

Convert float to string with Sprintf

https://codeeval.dev/gist/63ea1a0e8e3655ddeef2686984d3b0f8

Using strconv.FormatFloat is faster than fmt.Sprintf.

Convert string to float with ParseFloat

https://codeeval.dev/gist/04188c93abbc4b60d602a5ae4b1edb34

Convert string to float with Sscanf

https://codeeval.dev/gist/54345930c4959590eac6b6f3881ae501