aboutsummaryrefslogtreecommitdiff
path: root/content/playground
diff options
context:
space:
mode:
authorAndrew Gerrand <adg@golang.org>2014-04-15 11:43:38 +1000
committerAndrew Gerrand <adg@golang.org>2014-04-15 11:43:38 +1000
commitfba6ccb2a3a677663296815fab3c235dc8d0a54b (patch)
treebdfd805ab7817c969bb9dd1f9e6ea1f5f86a3d7a /content/playground
parent26209f9d1cbd0faeef306f1da2c43184d489a9a8 (diff)
go.blog: fix build; add "// +build OMIT" to many samples
We use OMIT instead of ignore so such lines will be omitted from present output. LGTM=bradfitz R=golang-codereviews, bradfitz CC=golang-codereviews https://golang.org/cl/87890045
Diffstat (limited to 'content/playground')
-rw-r--r--content/playground/net.go2
-rw-r--r--content/playground/os.go2
-rw-r--r--content/playground/time.go2
3 files changed, 6 insertions, 0 deletions
diff --git a/content/playground/net.go b/content/playground/net.go
index 2728055..eb8b759 100644
--- a/content/playground/net.go
+++ b/content/playground/net.go
@@ -1,3 +1,5 @@
+// +build OMIT
+
package main
import (
diff --git a/content/playground/os.go b/content/playground/os.go
index a73beb0..cf0cd32 100644
--- a/content/playground/os.go
+++ b/content/playground/os.go
@@ -1,3 +1,5 @@
+// +build OMIT
+
package main
import (
diff --git a/content/playground/time.go b/content/playground/time.go
index 987620a..fb1f314 100644
--- a/content/playground/time.go
+++ b/content/playground/time.go
@@ -1,3 +1,5 @@
+// +build OMIT
+
package main
import (