Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place. Commercial Alternative to JupyterHub.
Path: blob/master/go/go.sagews
Views: 947
The Official Go Language Tutorial
(Actually, this is an unofficial in SageMathCloud of the official tutorial.)

Let’s take the official Go tour: http://tour.golang.org using SageMathCloud.
Instructions:
To use this, open the file
go.sagews
in any SageMathCloud project at https://cloud.sagemath.comEdit code in cells and press shift+enter to evaluate it.
Insert new cells by clicking the blue bar between cells.
Put %go at the beggining of cells to evaluate code using go.
Double click on text if you want to change it.
Hello, 世界
This Go Playground
The SageMathCloud “sandbox” is actually not restrictive like the official go one. You can do anything.
Packages
Every Go program is made up of packages.
Programs start running in package main.
This program is using the packages with import paths "fmt"
and "math/rand"
.
By convention, the package name is the same as the last element of the import path. For instance, the "math/rand"
package comprises files that begin with the statement package rand.
Imports
The above code groups the imports into a parenthesized, “factored” import statement. You can also write multiple import statements, like this:
Exported names
After importing a package, you can refer to the names it exports.
In Go, a name is exported if it begins with a capital letter.
Foo is an exported name, as is FOO. The name foo is not exported.
Run the code. Then rename math.pi to math.Pi and try it again.
You should see an error below before you change math.pi to math.Pi, then press shift+enter.
Functions
A function can take zero or more arguments.
In this example, add takes two parameters of type int.
Notice that the type comes after the variable name.
Functions continued
When two or more consecutive named function parameters share a type, you can omit the type from all but the last.
In this example, we shortened
x int, y int
to
x, y int
Multiple results
A function can return any number of results.
This function returns two strings.
Named results
Functions take parameters. In Go, functions can return multiple “result parameters”, not just a single value. They can be named and act just like variables.
If the result parameters are named, a return statement without arguments returns the current values of the results.
Variables
The var
statement declares a list of variables; as in function argument lists, the type is last.
Variables with initializers
A var declaration can include initializers, one per variable.
If an initializer is present, the type can be omitted; the variable will take the type of the initializer.
Short variable declarations
Inside a function, the := short assignment statement can be used in place of a var declaration with implicit type.
Outside a function, every construct begins with a keyword (var, func, and so on) and the := construct is not available.
Basic types
Go’s basic types are
bool
string
int int8 int16 int32 int64
uint uint8 uint16 uint32 uint64 uintptr
byte // alias for uint8
rune // alias for int32
// represents a Unicode code point
float32 float64
complex64 complex128
Type conversions
The expression T(v) converts the value v to the type T.
Some numeric conversions:
var i int = 42
var f float64 = float64(i)
var u uint = uint(f)
Or, put more simply:
i := 42
f := float64(i)
u := uint(f)
Unlike in C, in Go assignment between items of different type requires an explicit conversion. Try removing the float64 or int conversions in the example and see what happens.
Constants
Constants are declared like variables, but with the const keyword.
Constants can be character, string, boolean, or numeric values.
Constants cannot be declared using the := syntax.
Numeric Constants
Numeric constants are high-precision values.
An untyped constant takes the type needed by its context.
Try printing needInt(Big) too.
For
Go has only one looping construct, the for loop.
The basic for loop looks as it does in C or Java, except that the ( ) are gone (they are not even optional) and the { } are required.
(Aside: you can combine Sage’s time and go magics to find the total time to compile and run the program…)
For continued
As in C or Java, you can leave the pre and post statements empty.
For is Go’s “while”
At that point you can drop the semicolons: C’s while is spelled for in Go.
Forever
If you omit the loop condition it loops forever, so an infinite loop is compactly expressed.
HINT: In SageMathCloud, interrupt this by clicking the Stop button above.
If
The if statement looks as it does in C or Java, except that the ( ) are gone and the { } are required.
(Sound familiar?)
If with a short statement
Like for, the if statement can start with a short statement to execute before the condition.
Variables declared by the statement are only in scope until the end of the if.
(Try using v in the last return statement.)
If and else
Variables declared inside an if short statement are also available inside any of the else blocks.
Exercise: Loops and Functions
As a simple way to play with functions and loops, implement the square root function using Newton’s method.
In this case, Newton’s method is to approximate Sqrt(x)
by picking a starting point z
and then repeating:
To begin with, just repeat that calculation 10 times and see how close you get to the answer for various values (1, 2, 3, …).
Next, change the loop condition to stop once the value has stopped changing (or only changes by a very small delta). See if that’s more or fewer iterations. How close are you to the math.Sqrt?
Hint: to declare and initialize a floating point value, give it floating point syntax or use a conversion:
z := float64(1)
z := 1.0
Structs
A struct is a collection of fields.
(And a type declaration does what you’d expect.)
Pointers
Go has pointers, but no pointer arithmetic.
Struct fields can be accessed through a struct pointer. The indirection through the pointer is transparent.
Struct Literals
A struct literal denotes a newly allocated struct value by listing the values of its fields.
You can list just a subset of fields by using the Name: syntax. (And the order of named fields is irrelevant.)
The special prefix & constructs a pointer to a newly allocated struct.
The new function
The expression new(T)
allocates a zeroed T
value and returns a pointer to it.
var t *T = new(T)
or
t := new(T)
Arrays
The type [n]T
is an array of n
values of type T
.
The expression
var a [10]int
declares a variable a
as an array of ten integers.
An array’s length is part of its type, so arrays cannot be resized. This seems limiting, but don’t worry; Go provides a convenient way of working with arrays.
Slices
A slice points to an array of values and also includes a length.
[]T
is a slice with elements of type T
.
Slicing slices
Slices can be re-sliced, creating a new slice value that points to the same array.
The expression
s[lo:hi]
evaluates to a slice of the elements from lo through hi-1, inclusive. Thus
s[lo:lo]
is empty and
s[lo:lo+1]
has one element.
Making slices
Slices are created with the make function. It works by allocating a zeroed array and returning a slice that refers to that array:
a := make([]int, 5) // len(a)=5
To specify a capacity, pass a third argument to make:
b := make([]int, 0, 5) // len(b)=0, cap(b)=5
b = b[:cap(b)] // len(b)=5, cap(b)=5
b = b[1:] // len(b)=4, cap(b)=4
Nil slices
The zero value of a slice is nil.
A nil slice has a length and capacity of 0.
(To learn more about slices, read the Slices: usage and internals article.)
Range
The range form of the for loop iterates over a slice or map.
Exercise: Slices
Implement Pic
. It should return a slice of length dy
, each element of which is a slice of dx
8-bit unsigned integers. When you run the program, it will display your picture, interpreting the integers as grayscale (well, bluescale) values.
The choice of image is up to you. Interesting functions include x^y
, (x+y)/2
, and x*y
.
(You need to use a loop to allocate each []uint8
inside the [][]uint8
.)
(Use uint8(intValue)
to convert between types.)
NOTE: I wasn’t even able to figure out how to import that pic library; and I doubt it would work… Email wstein@uw.edu if you figure out how to make this work.
Maps
A map maps keys to values.
Maps must be created with make (not new) before use; the nil map is empty and cannot be assigned to.
Map literals
Map literals are like struct literals, but the keys are required.
Map literals continued
If the top-level type is just a type name, you can omit it from the elements of the literal.
Mutating Maps
Insert or update an element in map m:
m[key] = elem
Retrieve an element:
elem = m[key]
Delete an element:
delete(m, key)
Test that a key is present with a two-value assignment:
elem, ok = m[key]
If key is in m, ok is true. If not, ok is false and elem is the zero value for the map’s element type.
Similarly, when reading from a map if the key is not present the result is the zero value for the map’s element type.
Exercise: Maps
Implement WordCount. It should return a map of the counts of each “word” in the string s. The wc.Test function runs a test suite against the provided function and prints success or failure.
You might find strings.Fields helpful.
Function values
Functions are values too.
Function closures
Go functions may be closures. A closure is a function value that references variables from outside its body. The function may access and assign to the referenced variables; in this sense the function is “bound” to the variables.
For example, the adder function returns a closure. Each closure is bound to its own sum variable.
Exercise: Fibonacci closure
Let’s have some fun with functions.
Implement a fibonacci function that returns a function (a closure) that returns successive fibonacci numbers.
Switch
You probably knew what switch was going to look like.
A case body breaks automatically, unless it ends with a fallthrough statement.
Switch evaluation order
Switch cases evaluate cases from top to bottom, stopping when a case succeeds.
For example,
switch i {
case 0:
case f():
}
does not call f
if i==0
.
Switch with no condition
Switch without a condition is the same as switch true.
This construct can be a clean way to write long if-then-else chains.
NOTE: In SageMathCloud the clock is set to the UTC time zone (i.e., England).
Advanced Exercise: Complex cube roots
Let’s explore Go’s built-in support for complex numbers via the complex64
and complex128
types. For cube roots, Newton’s method amounts to repeating:
Find the cube root of 2, just to make sure the algorithm works. There is a Pow function in the math/cmplx package.
Methods and Interfaces
The next group of slides covers methods and interfaces, the constructs that define objects and their behavior.
Methods
Go does not have classes. However, you can define methods on struct types.
The method receiver appears in its own argument list between the func keyword and the method name.
Methods continued
In fact, you can define a method on any type you define in your package, not just structs.
You cannot define a method on a type from another package, or on a basic type.
Methods with pointer receivers
Methods can be associated with a named type or a pointer to a named type.
We just saw two Abs methods. One on the *Vertex pointer type and the other on the MyFloat value type.
There are two reasons to use a pointer receiver. First, to avoid copying the value on each method call (more efficient if the value type is a large struct). Second, so that the method can modify the value that its receiver points to.
Try changing the declarations of the Abs and Scale methods to use Vertex as the receiver, instead of *Vertex.
The Scale method has no effect when v is a Vertex. Scale mutates v. When v is a value (non-pointer) type, the method sees a copy of the Vertex and cannot mutate the original value.
Abs works either way. It only reads v. It doesn’t matter whether it is reading the original value (through a pointer) or a copy of that value.
Interfaces
An interface type is defined by a set of methods.
A value of interface type can hold any value that implements those methods.
Note: The code below fails to compile.
Vertex doesn’t satisfy Abser because the Abs method is defined only on *Vertex
, not Vertex
.
Fix this by changing (v *Vertex)
to (v Vertex)
.
Interfaces are satisfied implicitly
A type implements an interface by implementing the methods.
There is no explicit declaration of intent.
Implicit interfaces decouple implementation packages from the packages that define the interfaces: neither depends on the other.
It also encourages the definition of precise interfaces, because you don’t have to find every implementation and tag it with the new interface name.
Package io defines Reader and Writer; you don’t have to.
Errors
An error is anything that can describe itself as an error string. The idea is captured by the predefined, built-in interface type, error, with its single method, Error, returning a string:
type error interface {
Error() string
}
The fmt package’s various print routines automatically know to call the method when asked to print an error.
Exercise: Errors
Copy your `Sqrt function from the earlier exercises and modify it to return an error value.
Sqrt
should return a non-nil error value when given a negative number, as it doesn’t support complex numbers.
Create a new type
type ErrNegativeSqrt float64
and make it an error by giving it a
func (e ErrNegativeSqrt) Error() string
method such that ErrNegativeSqrt(-2).Error()
returns "cannot Sqrt negative number: -2"
.
Note: a call to fmt.Print(e)
inside the Error
method will send the program into an infinite loop. You can avoid this by converting e
first: fmt.Print(float64(e))
. Why?
Change your Sqrt
function to return an ErrNegativeSqrt
value when given a negative number.
Web servers
Package http serves HTTP requests using any value that implements http.Handler
:
package http
type Handler interface {
ServeHTTP(w ResponseWriter, r *Request)
}
In this example, the type Hello implements http.Handler.
IMPORTANT
Visit
https://cloud.sagemath.com/<project_id>/port/4000/
to see the greeting, whereproject_id
is the uuid of the project you’re using right now (it’s in the url or you can get it by evaluating the line directly below).Click the Stop button above to terminate the server and continue being able to edit code in the worksheet.
Exercise: HTTP Handlers
Implement the following types and define ServeHTTP methods on them. Register them to handle specific paths in your web server.
type String string
type Struct struct {
Greeting string
Punct string
Who string
}
For example, you should be able to register handlers using:
http.Handle("/string", String("I'm a frayed knot."))
http.Handle("/struct", &Struct{"Hello", ":", "Gophers!"})
WARNING: In SageMathCloud you have to instead handle urls like /<project_id>/port/4000/string
, unfortunately.
Images
Package image defines the Image interface:
package image
type Image interface {
ColorModel() color.Model
Bounds() Rectangle
At(x, y int) color.Color
}
(See the documentation for all the details.)
Also, color.Color
and color.Model
are interfaces, but we’ll ignore that by using the predefined implementations color.RGBA
and color.RGBAModel
. These interfaces and types are specified by the image/color package.
Exercise: Images
Remember the picture generator you wrote earlier? Let’s write another one, but this time it will return an implementation of image.Image instead of a slice of data.
Define your own Image type, implement the necessary methods, and call pic.ShowImage
.
Bounds should return a image.Rectangle, like image.Rect(0, 0, w, h)
.
ColorModel should return color.RGBAModel.
At should return a color; the value v in the last picture generator corresponds to color.RGBA{v, v, 255, 255} in this one.
WARNING: I have no idea how to make this work in SageMathCloud.
Exercise: Rot13 Reader
A common pattern is an io.Reader
that wraps another io.Reader
, modifying the stream in some way.
For example, the gzip.NewReader
function takes an io.Reader
(a stream of gzipped data) and returns a *gzip.Reader
that also implements io.Reader
(a stream of the decompressed data).
Implement a rot13Reader
that implements io.Reader
and reads from an io.Reader
, modifying the stream by applying the ROT13 substitution cipher to all alphabetical characters.
The rot13Reader
type is provided for you. Make it an io.Reader
by implementing its Read
method.
Concurrency
The next section covers Go’s concurrency primitives.
Goroutines
A goroutine is a lightweight thread managed by the Go runtime.
go f(x, y, z)
starts a new goroutine running
f(x, y, z)
The evaluation of f, x, y, and z happens in the current goroutine and the execution of f happens in the new goroutine.
Goroutines run in the same address space, so access to shared memory must be synchronized. The sync package provides useful primitives, although you won’t need them much in Go as there are other primitives. (See the next slide.)
Channels
Channels are a typed conduit through which you can send and receive values with the channel operator, <-.
ch <- v // Send v to channel ch.
v := <-ch // Receive from ch, and
// assign value to v.
(The data flows in the direction of the arrow.)
Like maps and slices, channels must be created before use:
ch := make(chan int)
By default, sends and receives block until the other side is ready. This allows goroutines to synchronize without explicit locks or condition variables.
Buffered Channels
Channels can be buffered. Provide the buffer length as the second argument to make to initialize a buffered channel:
ch := make(chan int, 100)
Sends to a buffered channel block only when the buffer is full. Receives block when the buffer is empty.
Modify the example to overfill the buffer and see what happens.
Range and Close
A sender can close a channel to indicate that no more values will be sent. Receivers can test whether a channel has been closed by assigning a second parameter to the receive expression: after
v, ok := <-ch
ok is false if there are no more values to receive and the channel is closed.
The loop for i := range c
receives values from the channel repeatedly until it is closed.
Note: Only the sender should close a channel, never the receiver. Sending on a closed channel will cause a panic.
Another note: Channels aren’t like files; you don’t usually need to close them. Closing is only necessary when the receiver must be told there are no more values coming, such as to terminate a range loop.
Select
The select statement lets a goroutine wait on multiple communication operations.
A select blocks until one of its cases can run, then it executes that case. It chooses one at random if multiple are ready.
Default Selection
The default case in a select is run if no other case is ready.
Use a default case to try a send or receive without blocking:
select {
case i := <-c:
// use i
default:
// receiving from c would block
}
Exercise: Equivalent Binary Trees
There can be many different binary trees with the same sequence of values stored at the leaves. For example, here are two binary trees storing the sequence 1, 1, 2, 3, 5, 8, 13.
A function to check whether two binary trees store the same sequence is quite complex in most languages. We’ll use Go’s concurrency and channels to write a simple solution.
This example uses the tree package, which defines the type:
type Tree struct {
Left *Tree
Value int
Right *Tree
}
Exercise: Equivalent Binary Trees
Implement the Walk function.
Test the Walk function.
The function tree.New(k) constructs a randomly-structured binary tree holding the values k, 2k, 3k, …, 10k.
Create a new channel ch and kick off the walker:
go Walk(tree.New(1), ch) Then read and print 10 values from the channel. It should be the numbers 1, 2, 3, …, 10.
Implement the Same function using Walk to determine whether t1 and t2 store the same values.
Test the Same function.
Same(tree.New(1), tree.New(1)) should return true, and Same(tree.New(1), tree.New(2)) should return false.
Exercise: Web Crawler
In this exercise you’ll use Go’s concurrency features to parallelize a web crawler.
Modify the Crawl function to fetch URLs in parallel without fetching the same URL twice.
NOTE: Heh, I’m not sure I want you running this in SageMathCloud… :-)
Where to Go from here…
See http://tour.golang.org/#74 for documentation and other resources.
In SageMathCloud you can write go code in files such as
foo.go
, then compile and run them using the command line terminal by typinggo build foo.go
. To create a file, click “+New”, type the file name, then press enter.