Skip to content

Instantly share code, notes, and snippets.

@takakd
Created January 17, 2021 00:56
Show Gist options
  • Save takakd/28d69930a1f6008fd651c6ccea2760c9 to your computer and use it in GitHub Desktop.
Save takakd/28d69930a1f6008fd651c6ccea2760c9 to your computer and use it in GitHub Desktop.
My Golang note.
# Returning value
# github.com/aws/aws-sdk-go/service/translate/api.go
# line. 4560
func newErrorUnsupportedLanguagePairException(v protocol.ResponseMetadata) error {
return &UnsupportedLanguagePairException{
RespMetadata: v,
}
}
# Redundancy
func f() *A {
a := &A{}
return a
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment