# README
Go fmt
You can format the code using the go fmt command go fmt unformatted.go
.
It will update the code to match the standard formatting conventions.
The output:
package main
import "fmt"
func main() {
msg := "Hello"
fmt.Println(msg)
}