Created
January 15, 2022 08:08
-
-
Save percybolmer/884f03cb9de39b3e71a7a26fdbd393d9 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
// Move is a generic function that takes in a Moveable and moves it | |
func Move[V Moveable](v V, meters int) { | |
v.Move(meters) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment