Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(404)

Delta Between Two Patch Sets: 2013/go-sreops/hello.go

Issue 87910043: code review 87910043: go.talks: fix build; add "// +build OMIT" to many samples (Closed)
Left Patch Set: Created 9 years, 11 months ago
Right Patch Set: diff -r 64c0764808ba https://code.google.com/p/go.talks Created 9 years, 11 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « 2013/go-sreops/goroutines-channels.go ('k') | 2013/go4python/deco.go » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
1 // +build ignore 1 // +build OMIT
2 2
3 package main 3 package main
4 4
5 import ( 5 import (
6 "flag" 6 "flag"
7 "fmt" 7 "fmt"
8 ) 8 )
9 9
10 var message = flag.String("message", "Hello, OSCON!", "what to say") 10 var message = flag.String("message", "Hello, OSCON!", "what to say")
11 11
12 func main() { 12 func main() {
13 flag.Parse() 13 flag.Parse()
14 fmt.Println(*message) 14 fmt.Println(*message)
15 } 15 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b