Files
GoLearning/03-formating.go
2024-02-29 15:50:42 -06:00

8 lines
73 B
Go

package main
import "fmt"
func main() {
fmt.Printf("%.2f\n", 1.0/3)
}