Skip to content

Instantly share code, notes, and snippets.

@refs
Last active November 23, 2020 13:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save refs/04b066b8b891de6fd1d7d9cf64a89c12 to your computer and use it in GitHub Desktop.
Save refs/04b066b8b891de6fd1d7d9cf64a89c12 to your computer and use it in GitHub Desktop.

Width + Precision (*.*)

width

fmt.Printf("%*v", 9, 42) // denoted by *

precision

fmt.Printf("%.*v", 2, 42.77777) // denoted by the wildcard after . -> 42.78
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment