Created
June 18, 2023 23:52
-
-
Save huantt/3243f84f6e2cb61ee5dec420c7cd3585 to your computer and use it in GitHub Desktop.
This file contains 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 speaker struct { | |
} | |
func (s *speaker) Speak() string { | |
return "hello" | |
} | |
// Exported | |
var Speaker speaker | |
var SpeakerName = "Alice" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment