package
0.0.0-20241217132413-459923979807
Repository: https://github.com/packtpublishing/system-programming-essentials-with-go.git
Documentation: pkg.go.dev

# 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)
}