commit | dd59d6852dfb14d1df8ea02959345bc72cdc5c03 | [log] [tgz] |
---|---|---|
author | Adam <bitlux@users.noreply.github.com> | Mon Apr 07 15:30:11 2025 +0000 |
committer | Gopher Robot <gobot@golang.org> | Mon Apr 07 08:34:44 2025 -0700 |
tree | b01d7a439576d5ceb582b75b7d104a172ccb0343 | |
parent | 398e112173f492ddf8d48c8b76ea9965a21fa308 [diff] |
slog-handler-guide: remove doubled word Change-Id: I2fc1ead51b4da07a56201ceab4abd4f9e0643294 GitHub-Last-Rev: bca7c8e7ef1c904b29f6b133a9857bde7b646cc0 GitHub-Pull-Request: golang/example#38 Reviewed-on: https://go-review.googlesource.com/c/example/+/662795 LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Dmitri Shuralyov <dmitshur@google.com> Reviewed-by: Jonathan Amsterdam <jba@google.com> Auto-Submit: Dmitri Shuralyov <dmitshur@google.com> Reviewed-by: Sean Liao <sean@liao.dev>
This repository contains a collection of Go programs and libraries that demonstrate the language, standard libraries, and tools.
$ git clone https://go.googlesource.com/example $ cd example
https://go.googlesource.com/example is the canonical Git repository. It is mirrored at https://github.com/golang/example.
$ cd hello $ go build $ ./hello -help
A trivial “Hello, world” program that uses a library package.
The hello command covers:
The reverse reverse covers:
$ cd helloserver $ go run .
A trivial “Hello, world” web server.
Topics covered:
$ cd outyet $ go run .
A web server that answers the question: “Is Go 1.x out yet?”
Topics covered:
A trivial “Hello, world” App Engine application intended to be used as the starting point for your own code. Please see Google App Engine SDK for Go and Quickstart for Go in the App Engine Standard Environment.
The go/types
package is a type-checker for Go programs. It is one of the most complex packages in Go's standard library, so we have provided this tutorial to help you find your bearings. It comes with several example programs that you can obtain using go get
and play with as you learn to build tools that analyze or manipulate Go programs.
A trivial web server that demonstrates the use of the template
package's block
feature.
The log/slog
package supports structured logging. It features a flexible backend in the form of a Handler
interface. This guide can help you write your own handler.