Created
May 30, 2017 15:49
-
-
Save girish3/7e4f7e5d31a0473593fa0499355b8036 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
// Taking the same Go example as above | |
// Human and Student structs .... | |
human := Human{"John"} | |
// human will be passed by value, new copy will be created. | |
student := Student{human, 1} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment