summaryrefslogtreecommitdiff
path: root/doc/progs/printf.go
diff options
context:
space:
mode:
Diffstat (limited to 'doc/progs/printf.go')
-rw-r--r--doc/progs/printf.go11
1 files changed, 0 insertions, 11 deletions
diff --git a/doc/progs/printf.go b/doc/progs/printf.go
deleted file mode 100644
index 3bd70f264..000000000
--- a/doc/progs/printf.go
+++ /dev/null
@@ -1,11 +0,0 @@
-// 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");
-}