Go example projects
Перейти к файлу
Alan Donovan 15d04612f8 gotypes: fix typos
(Was https://github.com/golang/example/pull/3 by nikai3d)

Change-Id: I63b238a112c1406e0aaad5f9e6cba956c24e11b9
Reviewed-on: https://go-review.googlesource.com/18190
Reviewed-by: Alan Donovan <adonovan@google.com>
2015-12-28 15:15:52 +00:00
appengine-hello example/appengine-hello: Update Go SDK URL 2015-06-10 18:39:27 +00:00
gotypes gotypes: fix typos 2015-12-28 15:15:52 +00:00
hello initial commit 2014-07-28 11:35:39 +10:00
outyet example/outyet: Change baseurl to go.googlesource.com. 2015-06-10 00:25:24 +00:00
stringutil Update Reverse comment 2014-11-07 10:10:44 +11:00
LICENSE initial commit 2014-07-28 11:35:39 +10:00
README.md example: add bootstrap for app engine apps with a single module 2015-01-13 23:11:11 +00:00

README.md

Go example projects

This repository contains a collection of Go programs and libraries that demonstrate the language, standard libraries, and tools.

The examples

hello (godoc) and stringutil (godoc)

go get github.com/golang/example/hello

A trivial "Hello, world" program that uses a stringutil package.

Command hello covers:

  • The basic form of an executable command
  • Importing packages (from the standard library and the local repository)
  • Printing strings (fmt)

Library stringutil covers:

  • The basic form of a library
  • Conversion between string and []rune
  • Table-driven unit tests (testing)

outyet (godoc)

go get github.com/golang/example/outyet

A web server that answers the question: "Is Go 1.x out yet?"

Topics covered:

  • Command-line flags (flag)
  • Web servers (net/http)
  • HTML Templates (html/template)
  • Logging (log)
  • Long-running background processes
  • Synchronizing data access between goroutines (sync)
  • Exporting server state for monitoring (expvar)
  • Unit and integration tests (testing)
  • Dependency injection
  • Time (time)

appengine-hello (godoc)

goapp get github.com/golang/example/appengine-hello

A trivial "Hello, world" App Engine application intended to be used as the starting point for your own code.

Note: The goapp tool is part of the Google App Engine SDK for Go.