Skip to content

Instantly share code, notes, and snippets.

@Austinhs
Created November 19, 2022 03:11
Show Gist options
  • Select an option

  • Save Austinhs/c0bbf6f08ed2114cc1df55034889d394 to your computer and use it in GitHub Desktop.

Select an option

Save Austinhs/c0bbf6f08ed2114cc1df55034889d394 to your computer and use it in GitHub Desktop.
package main
type Example struct {
Name *string
}
func main() {
myStruct := &Example{}
myStruct.Name = "Test"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment