Go Printing to Stdout and Stderr
Jump to navigation
Jump to search
Internal
Bootstrapping Functions
print()
println()
func main() {
println("something")
}
fmt.Printf()
import "fmt"
// ...
fmt.Printf("something")
Format Strings
fmt.Printf("Hello %s", "Bob")