Created
August 13, 2020 02:05
-
-
Save karlseguin/678cf82bb65290ec586dcae2999f5f78 to your computer and use it in GitHub Desktop.
Dummy modules in go
This file contains 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
var Util util | |
type util struct{} | |
func (_ util) PadLeft(s string, n int) string { | |
//... | |
} | |
// ... | |
Util.PadLeft("over 9000!", 90001) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment