Skip to content

Instantly share code, notes, and snippets.

@oxtoacart
Created August 5, 2022 21:23
Show Gist options
  • Save oxtoacart/32837541b63df6d52a9e0511e0c594ac to your computer and use it in GitHub Desktop.
Save oxtoacart/32837541b63df6d52a9e0511e0c594ac to your computer and use it in GitHub Desktop.
type Display struct {}
func (d *Display) DrawSomething() {
...
}
type Computer struct {
Display *Display
}
func NewComputer() *Computer {
d := &Display{}
return &Computer{Display: Display}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment