Skip to content

Instantly share code, notes, and snippets.

@arriqaaq
Created January 26, 2023 07:36
Show Gist options
  • Save arriqaaq/65221588861c3df62cc82a8cb45e4469 to your computer and use it in GitHub Desktop.
Save arriqaaq/65221588861c3df62cc82a8cb45e4469 to your computer and use it in GitHub Desktop.
type Car struct {
Brand string
Model string
}
func (c *Car) Drive() string {
return "Vroom vroom!"
}
originalCar := &Car{Brand: "Tesla", Model: "Model S"}
clonedCar := originalCar.clone()
clonedCar.Model = "Model 3"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment