Created
January 27, 2022 19:12
-
-
Save percybolmer/83f2703b2747e0fca7b0e6cdb6696fb9 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
// Car is a Generic Struct with the type S to be defined | |
type Car[S Subtractable] struct { | |
Name string | |
} | |
// Person is a Generic Struct with the type S to be defined | |
type Person[S Subtractable] struct { | |
Name string | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment