code
stringlengths
10
1.34M
language
stringclasses
1 value
// Package dfareporting provides access to the DFA Reporting API. // // See https://developers.google.com/doubleclick-advertisers/reporting/ // // Usage example: // // import "code.google.com/p/google-api-go-client/dfareporting/v1.1" // ... // dfareportingService, err := dfareporting.New(oauthHttpClient) package ...
Go
// Package dfareporting provides access to the DFA Reporting API. // // See https://developers.google.com/doubleclick-advertisers/reporting/ // // Usage example: // // import "code.google.com/p/google-api-go-client/dfareporting/v1" // ... // dfareportingService, err := dfareporting.New(oauthHttpClient) package df...
Go
// Package androidpublisher provides access to the Google Play Android Developer API. // // See https://developers.google.com/android-publisher // // Usage example: // // import "code.google.com/p/google-api-go-client/androidpublisher/v1.1" // ... // androidpublisherService, err := androidpublisher.New(oauthHttpC...
Go
// Package androidpublisher provides access to the Google Play Android Developer API. // // See https://developers.google.com/android-publisher // // Usage example: // // import "code.google.com/p/google-api-go-client/androidpublisher/v1" // ... // androidpublisherService, err := androidpublisher.New(oauthHttpCli...
Go
// Package books provides access to the Books API. // // See https://developers.google.com/books/docs/v1/getting_started // // Usage example: // // import "code.google.com/p/google-api-go-client/books/v1" // ... // booksService, err := books.New(oauthHttpClient) package books import ( "bytes" "code.google.com/...
Go
// Package prediction provides access to the Prediction API. // // See https://developers.google.com/prediction/docs/developer-guide // // Usage example: // // import "code.google.com/p/google-api-go-client/prediction/v1.3" // ... // predictionService, err := prediction.New(oauthHttpClient) package prediction im...
Go
// Package prediction provides access to the Prediction API. // // See https://developers.google.com/prediction/docs/developer-guide // // Usage example: // // import "code.google.com/p/google-api-go-client/prediction/v1.2" // ... // predictionService, err := prediction.New(oauthHttpClient) package prediction im...
Go
// Package prediction provides access to the Prediction API. // // See https://developers.google.com/prediction/docs/developer-guide // // Usage example: // // import "code.google.com/p/google-api-go-client/prediction/v1.5" // ... // predictionService, err := prediction.New(oauthHttpClient) package prediction im...
Go
// Package prediction provides access to the Prediction API. // // See https://developers.google.com/prediction/docs/developer-guide // // Usage example: // // import "code.google.com/p/google-api-go-client/prediction/v1.4" // ... // predictionService, err := prediction.New(oauthHttpClient) package prediction im...
Go
// Package orkut provides access to the Orkut API. // // See http://code.google.com/apis/orkut/v2/reference.html // // Usage example: // // import "code.google.com/p/google-api-go-client/orkut/v2" // ... // orkutService, err := orkut.New(oauthHttpClient) package orkut import ( "bytes" "code.google.com/p/google...
Go
package main import ( "log" "net/http" orkut "code.google.com/p/google-api-go-client/orkut/v2" ) func init() { registerDemo("orkut", orkut.OrkutScope, orkutMain) } func orkutMain(client *http.Client, argv []string) { orkutapi, _ := orkut.New(client) myBadges, err := orkutapi.Badges.List("me").Do() if err != ...
Go
package main import ( "fmt" "log" "net/http" "os" "strings" urlshortener "code.google.com/p/google-api-go-client/urlshortener/v1" ) func init() { registerDemo("urlshortener", urlshortener.UrlshortenerScope, urlShortenerMain) } func urlShortenerMain(client *http.Client, argv []string) { if len(argv) != 1 { ...
Go
// Copyright 2011 Google Inc. 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 ( "encoding/gob" "errors" "flag" "fmt" "hash/fnv" "io/ioutil" "log" "net/http" "net/http/httptest" "net/url" "os" "os/exec" "path/...
Go
package main import ( "bytes" "fmt" "io" "io/ioutil" "net/http" "os" ) type logTransport struct { rt http.RoundTripper } func (t *logTransport) RoundTrip(req *http.Request) (*http.Response, error) { var buf bytes.Buffer os.Stdout.Write([]byte("\n[request]\n")) if req.Body != nil { req.Body = ioutil.NopC...
Go
package main import ( "fmt" "log" "net/http" "os" storage "code.google.com/p/google-api-go-client/storage/v1beta1" ) func init() { registerDemo("storage", storage.DevstorageRead_writeScope, storageMain) } func storageMain(client *http.Client, argv []string) { if len(argv) != 2 { fmt.Fprintln(os.Stderr, "Us...
Go
package main import ( "fmt" "log" "net/http" "os" drive "code.google.com/p/google-api-go-client/drive/v2" ) func init() { registerDemo("drive", drive.DriveScope, driveMain) } func driveMain(client *http.Client, argv []string) { if len(argv) != 1 { fmt.Fprintln(os.Stderr, "Usage: drive filename (to upload a...
Go
package main import ( "log" "net/http" tasks "code.google.com/p/google-api-go-client/tasks/v1" ) func init() { registerDemo("tasks", tasks.TasksScope, tasksMain) } func tasksMain(client *http.Client, argv []string) { taskapi, _ := tasks.New(client) task, err := taskapi.Tasks.Insert("@default", &tasks.Task{ ...
Go
// Copyright 2013 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 ( "container/list" "encoding/json" "fmt" "io/ioutil" "math" "math/rand" "net/http" "os" "strconv" "strings" "time" "code.googl...
Go
package main import ( "fmt" "log" "net/http" "os" compute "code.google.com/p/google-api-go-client/compute/v1beta12" ) func init() { registerDemo("compute", compute.ComputeScope, computeMain) } func computeMain(client *http.Client, argv []string) { if len(argv) != 2 { fmt.Fprintln(os.Stderr, "Usage: compute...
Go
// Package civicinfo provides access to the Google Civic Information API. // // See https://developers.google.com/civic-information // // Usage example: // // import "code.google.com/p/google-api-go-client/civicinfo/us_v1" // ... // civicinfoService, err := civicinfo.New(oauthHttpClient) package civicinfo import...
Go
// Package webfonts provides access to the Google Fonts Developer API. // // See https://developers.google.com/fonts/docs/developer_api // // Usage example: // // import "code.google.com/p/google-api-go-client/webfonts/v1" // ... // webfontsService, err := webfonts.New(oauthHttpClient) package webfonts import ( ...
Go
// Package customsearch provides access to the CustomSearch API. // // See https://developers.google.com/custom-search/v1/using_rest // // Usage example: // // import "code.google.com/p/google-api-go-client/customsearch/v1" // ... // customsearchService, err := customsearch.New(oauthHttpClient) package customsear...
Go
// Package doubleclickbidmanager provides access to the DoubleClick Bid Manager API. // // See https://devsite.googleplex.com/bid-manager/ // // Usage example: // // import "code.google.com/p/google-api-go-client/doubleclickbidmanager/v1" // ... // doubleclickbidmanagerService, err := doubleclickbidmanager.New(oa...
Go
// Package bigquery provides access to the BigQuery API. // // See https://code.google.com/apis/bigquery/docs/v2/ // // Usage example: // // import "code.google.com/p/google-api-go-client/bigquery/v2beta1" // ... // bigqueryService, err := bigquery.New(oauthHttpClient) package bigquery import ( "bytes" "fmt" ...
Go
// Package bigquery provides access to the BigQuery API. // // See https://developers.google.com/bigquery/docs/overview // // Usage example: // // import "code.google.com/p/google-api-go-client/bigquery/v2" // ... // bigqueryService, err := bigquery.New(oauthHttpClient) package bigquery import ( "bytes" "code....
Go
// Package youtubeanalytics provides access to the YouTube Analytics API. // // See http://developers.google.com/youtube/analytics/ // // Usage example: // // import "code.google.com/p/google-api-go-client/youtubeanalytics/v1beta1" // ... // youtubeanalyticsService, err := youtubeanalytics.New(oauthHttpClient) pa...
Go
// Package youtubeanalytics provides access to the YouTube Analytics API. // // See http://developers.google.com/youtube/analytics/ // // Usage example: // // import "code.google.com/p/google-api-go-client/youtubeanalytics/v1" // ... // youtubeanalyticsService, err := youtubeanalytics.New(oauthHttpClient) package...
Go
// Copyright 2011 Google Inc. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package googleapi contains the common code shared by all Google API // libraries. package googleapi import ( "bytes" "encoding/json" "fmt" "io" "io/ioutil"...
Go
// Copyright 2012 Google Inc. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. // Package transport contains HTTP transports used to make // authenticated API requests. package transport import ( "errors" "net/http" ) // APIKey is an HTTP ...
Go
// Package adsensehost provides access to the AdSense Host API. // // See https://developers.google.com/adsense/host/ // // Usage example: // // import "code.google.com/p/google-api-go-client/adsensehost/v4.1" // ... // adsensehostService, err := adsensehost.New(oauthHttpClient) package adsensehost import ( "by...
Go
// Package groupsmigration provides access to the Groups Migration API. // // See https://developers.google.com/google-apps/groups-migration/ // // Usage example: // // import "code.google.com/p/google-api-go-client/groupsmigration/v1" // ... // groupsmigrationService, err := groupsmigration.New(oauthHttpClient) ...
Go
// Copyright 2011 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 pic import ( "bytes" "encoding/base64" "fmt" "image" "image/png" ) func Show(f func(int, int) [][]uint8) { const ( dx = 256 dy = 256 ) da...
Go
package main import ( "fmt" "math" ) func pow(x, n, lim float64) float64 { if v := math.Pow(x, n); v < lim { return v } return lim } func main() { fmt.Println( pow(3, 2, 10), pow(3, 3, 20), ) }
Go
package main import "code.google.com/p/go-tour/tree" // Walk walks the tree t sending all values // from the tree to the channel ch. func Walk(t *tree.Tree, ch chan int) // Same determines whether the trees // t1 and t2 contain the same values. func Same(t1, t2 *tree.Tree) bool func main() { }
Go
package main import ( "fmt" "math" ) type Vertex struct { X, Y float64 } func (v *Vertex) Scale(f float64) { v.X = v.X * f v.Y = v.Y * f } func (v *Vertex) Abs() float64 { return math.Sqrt(v.X*v.X + v.Y*v.Y) } func main() { v := &Vertex{3, 4} v.Scale(5) fmt.Println(v, v.Abs()) }
Go
package main import "fmt" func split(sum int) (x, y int) { x = sum * 4 / 9 y = sum - x return } func main() { fmt.Println(split(17)) }
Go
package main import "fmt" const Pi = 3.14 func main() { const World = "世界" fmt.Println("Hello", World) fmt.Println("Happy", Pi, "Day") const Truth = true fmt.Println("Go rules?", Truth) }
Go
package main import ( "fmt" "math" ) func main() { hypot := func(x, y float64) float64 { return math.Sqrt(x*x + y*y) } fmt.Println(hypot(3, 4)) }
Go
package main import "fmt" func main() { sum := 1 for sum < 1000 { sum += sum } fmt.Println(sum) }
Go
package main import ( "fmt" ) func fibonacci(n int, c chan int) { x, y := 0, 1 for i := 0; i < n; i++ { c <- x x, y = y, x+y } close(c) } func main() { c := make(chan int, 10) go fibonacci(cap(c), c) for i := range c { fmt.Println(i) } }
Go
package main import ( "fmt" "math" ) func pow(x, n, lim float64) float64 { if v := math.Pow(x, n); v < lim { return v } else { fmt.Printf("%g >= %g\n", v, lim) } // can't use v here, though return lim } func main() { fmt.Println( pow(3, 2, 10), pow(3, 3, 20), ) }
Go
package main import ( "fmt" "math" ) type Abser interface { Abs() float64 } func main() { var a Abser f := MyFloat(-math.Sqrt2) v := Vertex{3, 4} a = f // a MyFloat implements Abser a = &v // a *Vertex implements Abser a = v // a Vertex, does NOT // implement Abser fmt.Println(a.Abs()) } type MyFloat...
Go
package main import ( "fmt" "time" ) func main() { tick := time.Tick(1e8) boom := time.After(5e8) for { select { case <-tick: fmt.Println("tick.") case <-boom: fmt.Println("BOOM!") return default: fmt.Println(" .") time.Sleep(5e7) } } }
Go
package main import "fmt" func main() { pow := make([]int, 10) for i := range pow { pow[i] = 1 << uint(i) } for _, value := range pow { fmt.Printf("%d\n", value) } }
Go
package main import ( "fmt" "runtime" ) func main() { fmt.Print("Go runs on ") switch os := runtime.GOOS; os { case "darwin": fmt.Println("OS X.") case "linux": fmt.Println("Linux.") default: // freebsd, openbsd, // plan9, windows... fmt.Printf("%s.", os) } }
Go
package main import ( "fmt" "math" ) func main() { fmt.Println("Happy", math.Pi, "Day") }
Go
package main import ( "fmt" "image" ) func main() { m := image.NewRGBA(image.Rect(0, 0, 100, 100)) fmt.Println(m.Bounds()) fmt.Println(m.At(0, 0).RGBA()) }
Go
package main import "fmt" func main() { m := make(map[string]int) m["Answer"] = 42 fmt.Println("The value:", m["Answer"]) m["Answer"] = 48 fmt.Println("The value:", m["Answer"]) delete(m, "Answer") fmt.Println("The value:", m["Answer"]) v, ok := m["Answer"] fmt.Println("The value:", v, "Present?", ok) }
Go
package main import "fmt" func sum(a []int, c chan int) { sum := 0 for _, v := range a { sum += v } c <- sum // send sum to c } func main() { a := []int{7, 2, 8, -9, 4, 0} c := make(chan int) go sum(a[:len(a)/2], c) go sum(a[len(a)/2:], c) x, y := <-c, <-c // receive from c fmt.Println(x, y, x+y) }
Go
package main import "fmt" func main() { p := []int{2, 3, 5, 7, 11, 13} fmt.Println("p ==", p) fmt.Println("p[1:4] ==", p[1:4]) // missing low index implies 0 fmt.Println("p[:3] ==", p[:3]) // missing high index implies len(s) fmt.Println("p[4:] ==", p[4:]) }
Go
package main import ( "fmt" ) type Fetcher interface { // Fetch returns the body of URL and // a slice of URLs found on that page. Fetch(url string) (body string, urls []string, err error) } // Crawl uses fetcher to recursively crawl // pages starting with url, to a maximum of depth. func Crawl(url string, depth...
Go
package main import ( "code.google.com/p/go-tour/wc" ) func WordCount(s string) map[string]int { return map[string]int{"x": 1} } func main() { wc.Test(WordCount) }
Go
package main import "fmt" type Vertex struct { Lat, Long float64 } var m = map[string]Vertex{ "Bell Labs": Vertex{ 40.68433, -74.39967, }, "Google": Vertex{ 37.42202, -122.08408, }, } func main() { fmt.Println(m) }
Go
package main import ( "fmt" ) func Sqrt(f float64) (float64, error) { return 0, nil } func main() { fmt.Println(Sqrt(2)) fmt.Println(Sqrt(-2)) }
Go
package main import "fmt" const ( Big = 1 << 100 Small = Big >> 99 ) func needInt(x int) int { return x*10 + 1 } func needFloat(x float64) float64 { return x * 0.1 } func main() { fmt.Println(needInt(Small)) fmt.Println(needFloat(Small)) fmt.Println(needFloat(Big)) }
Go
package main import "fmt" func main() { sum := 1 for sum < 1000 { sum += sum } fmt.Println(sum) }
Go
package main import ( "fmt" "time" ) func main() { t := time.Now() switch { case t.Hour() < 12: fmt.Println("Good morning!") case t.Hour() < 17: fmt.Println("Good afternoon.") default: fmt.Println("Good evening.") } }
Go
package main import ( "fmt" "time" ) func main() { fmt.Println("When's Saturday?") today := time.Now().Weekday() switch time.Saturday { case today + 0: fmt.Println("Today.") case today + 1: fmt.Println("Tomorrow.") case today + 2: fmt.Println("In two days.") default: fmt.Println("Too far away.") } }...
Go
package main import ( "code.google.com/p/go-tour/pic" "image" ) type Image struct{} func main() { m := Image{} pic.ShowImage(m) }
Go
package main import "fmt" func adder() func(int) int { sum := 0 return func(x int) int { sum += x return sum } } func main() { pos, neg := adder(), adder() for i := 0; i < 10; i++ { fmt.Println( pos(i), neg(-2*i), ) } }
Go
package main import ( "fmt" "math/cmplx" ) var ( ToBe bool = false MaxInt uint64 = 1<<64 - 1 z complex128 = cmplx.Sqrt(-5 + 12i) ) func main() { const f = "%T(%v)\n" fmt.Printf(f, ToBe, ToBe) fmt.Printf(f, MaxInt, MaxInt) fmt.Printf(f, z, z) }
Go
package main import ( "fmt" "time" ) type MyError struct { When time.Time What string } func (e *MyError) Error() string { return fmt.Sprintf("at %v, %s", e.When, e.What) } func run() error { return &MyError{ time.Now(), "it didn't work", } } func main() { if err := run(); err != nil { fmt.Println(...
Go
package main import "fmt" type Vertex struct { X int Y int } func main() { v := Vertex{1, 2} v.X = 4 fmt.Println(v.X) }
Go
package main import "fmt" func add(x, y int) int { return x + y } func main() { fmt.Println(add(42, 13)) }
Go
package main import "fmt" type Vertex struct { X, Y int } var ( p = Vertex{1, 2} // has type Vertex q = &Vertex{1, 2} // has type *Vertex r = Vertex{X: 1} // Y:0 is implicit s = Vertex{} // X:0 and Y:0 ) func main() { fmt.Println(p, q, r, s) }
Go
package main import ( "net/http" ) func main() { // your http.Handle calls here http.ListenAndServe("localhost:4000", nil) }
Go
package main import "fmt" type Vertex struct { X, Y int } func main() { v := new(Vertex) fmt.Println(v) v.X, v.Y = 11, 9 fmt.Println(v) }
Go
package main import "fmt" var x, y, z int var c, python, java bool func main() { fmt.Println(x, y, z, c, python, java) }
Go
package main import "fmt" func main() { fmt.Println("Hello, 世界") }
Go
package main import "fmt" func main() { c := make(chan int, 2) c <- 1 c <- 2 fmt.Println(<-c) fmt.Println(<-c) }
Go
package main import "fmt" type Vertex struct { Lat, Long float64 } var m = map[string]Vertex{ "Bell Labs": {40.68433, -74.39967}, "Google": {37.42202, -122.08408}, } func main() { fmt.Println(m) }
Go
package main import "fmt" func add(x int, y int) int { return x + y } func main() { fmt.Println(add(42, 13)) }
Go
package main import "fmt" func Cbrt(x complex128) complex128 { } func main() { fmt.Println(Cbrt(2)) }
Go
package main import "fmt" func main() { sum := 0 for i := 0; i < 10; i++ { sum += i } fmt.Println(sum) }
Go
package main import "code.google.com/p/go-tour/pic" func Pic(dx, dy int) [][]uint8 { } func main() { pic.Show(Pic) }
Go
package main import ( "fmt" ) func Sqrt(x float64) float64 { } func main() { fmt.Println(Sqrt(2)) }
Go
package main import "fmt" // fibonacci is a function that returns // a function that returns an int. func fibonacci() func() int { } func main() { f := fibonacci() for i := 0; i < 10; i++ { fmt.Println(f()) } }
Go
package main import "fmt" type Vertex struct { X int Y int } func main() { fmt.Println(Vertex{1, 2}) }
Go
package main import "fmt" var x, y, z int = 1, 2, 3 var c, python, java = true, false, "no!" func main() { fmt.Println(x, y, z, c, python, java) }
Go
package main import ( "fmt" "math" ) func main() { fmt.Printf("Now you have %g problems.", math.Nextafter(2, 3)) }
Go
package main import ( "fmt" "time" ) func say(s string) { for i := 0; i < 5; i++ { time.Sleep(100 * time.Millisecond) fmt.Println(s) } } func main() { go say("world") say("hello") }
Go
package main import "fmt" type Vertex struct { X int Y int } func main() { p := Vertex{1, 2} q := &p q.X = 1e9 fmt.Println(p) }
Go
package main import ( "fmt" "math" ) func main() { fmt.Println(math.pi) }
Go
package main import "fmt" func swap(x, y string) (string, string) { return y, x } func main() { a, b := swap("hello", "world") fmt.Println(a, b) }
Go
package main func main() { for { } }
Go
package main import "fmt" type Vertex struct { Lat, Long float64 } var m map[string]Vertex func main() { m = make(map[string]Vertex) m["Bell Labs"] = Vertex{ 40.68433, -74.39967, } fmt.Println(m["Bell Labs"]) }
Go
package main import "fmt" func main() { p := []int{2, 3, 5, 7, 11, 13} fmt.Println("p ==", p) for i := 0; i < len(p); i++ { fmt.Printf("p[%d] == %d\n", i, p[i]) } }
Go
package main import ( "fmt" "net/http" ) type Hello struct{} func (h Hello) ServeHTTP( w http.ResponseWriter, r *http.Request) { fmt.Fprint(w, "Hello!") } func main() { var h Hello http.ListenAndServe("localhost:4000", h) }
Go
package main import "fmt" func main() { var x, y, z int = 1, 2, 3 c, python, java := true, false, "no!" fmt.Println(x, y, z, c, python, java) }
Go
package main import ( "fmt" "math" ) type Vertex struct { X, Y float64 } func (v *Vertex) Abs() float64 { return math.Sqrt(v.X*v.X + v.Y*v.Y) } func main() { v := &Vertex{3, 4} fmt.Println(v.Abs()) }
Go
package main import "fmt" func main() { var z []int fmt.Println(z, len(z), cap(z)) if z == nil { fmt.Println("nil!") } }
Go
package main import "fmt" func main() { a := make([]int, 5) printSlice("a", a) b := make([]int, 0, 5) printSlice("b", b) c := b[:2] printSlice("c", c) d := c[2:5] printSlice("d", d) } func printSlice(s string, x []int) { fmt.Printf("%s len=%d cap=%d %v\n", s, len(x), cap(x), x) }
Go
package main import "fmt" var pow = []int{1, 2, 4, 8, 16, 32, 64, 128} func main() { for i, v := range pow { fmt.Printf("2**%d = %d\n", i, v) } }
Go
package main import ( "io" "os" "strings" ) type rot13Reader struct { r io.Reader } func main() { s := strings.NewReader( "Lbh penpxrq gur pbqr!") r := rot13Reader{s} io.Copy(os.Stdout, &r) }
Go
package main import ( "fmt" "math" ) func sqrt(x float64) string { if x < 0 { return sqrt(-x) + "i" } return fmt.Sprint(math.Sqrt(x)) } func main() { fmt.Println(sqrt(2), sqrt(-4)) }
Go
package main import "fmt" func fibonacci(c, quit chan int) { x, y := 0, 1 for { select { case c <- x: x, y = y, x+y case <-quit: fmt.Println("quit") return } } } func main() { c := make(chan int) quit := make(chan int) go func() { for i := 0; i < 10; i++ { fmt.Println(<-c) } quit <- 0...
Go
package main import ( "fmt" "os" ) type Reader interface { Read(b []byte) (n int, err error) } type Writer interface { Write(b []byte) (n int, err error) } type ReadWriter interface { Reader Writer } func main() { var w Writer // os.Stdout implements Writer w = os.Stdout fmt.Fprintf(w, "hello, writer\n...
Go
package main import ( "fmt" "math" ) type MyFloat float64 func (f MyFloat) Abs() float64 { if f < 0 { return float64(-f) } return float64(f) } func main() { f := MyFloat(-math.Sqrt2) fmt.Println(f.Abs()) }
Go
// Copyright 2011 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 tree import ( "fmt" "math/rand" ) // A Tree is a binary tree with integer values. type Tree struct { Left *Tree Value int Right *Tree } // New...
Go
// Copyright 2012 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 ( "io" "os" "strings" ) func rot13(b byte) byte { var a, z byte switch { case 'a' <= b && b <= 'z': a, z = 'a', 'z' case 'A' <= ...
Go