Skip to content

Instantly share code, notes, and snippets.

@Jxck
Created January 6, 2013 17:07
Show Gist options
  • Save Jxck/4468688 to your computer and use it in GitHub Desktop.
Save Jxck/4468688 to your computer and use it in GitHub Desktop.
func padding(str string) string {
return strings.Repeat("0", 8 - len(str)) + str
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment