Sign in
go
/
talks
/
81d7d5b93272feace7b82a6cc55ff6c7d2d8f570
/
.
/
2014
/
hammers
/
format.go
blob: 45e5d4913974eacd96a31794f3e9d6479ac1504b [
file
]
// +build ignore
package main
import (
"fmt"
"go/format"
)
func main() {
ugly := `func (f *File) Read(p []byte, )(n int, err error, ){}`
fmt.Println(ugly)
pretty, _ := format.Source([]byte(ugly))
// HL
fmt.Println(string(pretty))
}