0.1 + 0.2 error in Go

package main

import (
    "fmt"
)

func main() {
    result := 0.1 + 0.2
    fmt.Printf("%.1f\n", result)
}