Skip to content

Instantly share code, notes, and snippets.

@epequeno
Created May 3, 2012 15:49
Show Gist options
  • Save epequeno/2586709 to your computer and use it in GitHub Desktop.
Save epequeno/2586709 to your computer and use it in GitHub Desktop.
golang string formatting
package main
import (
"fmt"
"math"
)
func main() {
fmt.Println("The value of Pi is %1.3f", math.Pi)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment