Skip to content

Instantly share code, notes, and snippets.

@huantt
Created June 18, 2023 23:52
Show Gist options
  • Save huantt/3243f84f6e2cb61ee5dec420c7cd3585 to your computer and use it in GitHub Desktop.
Save huantt/3243f84f6e2cb61ee5dec420c7cd3585 to your computer and use it in GitHub Desktop.
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