From fba6ccb2a3a677663296815fab3c235dc8d0a54b Mon Sep 17 00:00:00 2001 From: Andrew Gerrand <adg@golang.org> Date: Tue, 15 Apr 2014 11:43:38 +1000 Subject: 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 --- content/playground/net.go | 2 ++ content/playground/os.go | 2 ++ content/playground/time.go | 2 ++ 3 files changed, 6 insertions(+) (limited to 'content/playground') 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 ( -- cgit v1.2.3