1
0
mirror of https://github.com/golang/go synced 2024-09-24 09:20:15 -06:00
go/doc/progs/printf.go
Rob Pike 61f3302044 printf->Printf etc.
the raw fmt routines will be another, smaller but subtler pass.

R=rsc
DELTA=157  (0 added, 0 deleted, 157 changed)
OCL=22851
CL=22851
2009-01-15 13:48:11 -08:00

12 lines
242 B
Go

// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package main
import "fmt"
func main() {
fmt.Printf("hello, %s\n", "world");
}