Last active
January 26, 2023 07:17
-
-
Save arriqaaq/de8c2f9fd93a8a9c4e364a6e354f61f7 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
| type Car interface { | |
| Drive() string | |
| } | |
| type SportsCar struct {} | |
| func (s SportsCar) Drive() string { | |
| return "Vroom vroom!" | |
| } | |
| type SUV struct {} | |
| func (s SUV) Drive() string { | |
| return "Rumble rumble!" | |
| } | |
| func NewCar(carType string) Car { | |
| if carType == "sports" { | |
| return SportsCar{} | |
| } else if carType == "suv" { | |
| return SUV{} | |
| } | |
| return nil | |
| } | |
| myCar := NewCar("sports") | |
| fmt.Println(myCar.Drive()) | |
| // Output: Vroom vroom! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment