Created
November 19, 2022 03:11
-
-
Save Austinhs/c0bbf6f08ed2114cc1df55034889d394 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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