mirror of
https://github.com/MADTeacher/go_basics.git
synced 2025-11-23 21:34:47 +02:00
10 lines
137 B
Go
10 lines
137 B
Go
package main
|
|
|
|
import "fmt"
|
|
|
|
func main() {
|
|
value := 173.000473
|
|
str := fmt.Sprintf("Value = %x", value)
|
|
fmt.Printf("str = %q\n", str)
|
|
}
|