Go example projects

Ben Petrie

0

Content Writer

Cybersecurity Specialist

Go example projects

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

Clone the project

https://go.googlesource.com/example is the canonical Git repository. It is mirrored at https://github.com/golang/example.
A trivial "Hello, world" program that uses a library package.
The hello command covers:
The basic form of an executable command
Importing packages (from the standard library and the local repository)
Printing strings (fmt)
Command-line flags (flag)
Logging (log)
The reverse reverse covers:
The basic form of a library
Conversion between string and []rune
Table-driven unit tests (testing)
A trivial "Hello, world" web server.
Topics covered:
Command-line flags (flag)
Logging (log)
Web servers (net/http)
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)
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.
Like this project
0

Posted May 30, 2024

Go example projects. Contribute to golang/example development by creating an account on GitHub.

Likes

0

Views

1

Tags

Content Writer

Cybersecurity Specialist

Blog
Blog
Video Editing: Crafting Engaging Content
Video Editing: Crafting Engaging Content
Advanced Troubleshooting for Technical Support
Advanced Troubleshooting for Technical Support
Comprehensive Guide to Cybersecurity Best Practices
Comprehensive Guide to Cybersecurity Best Practices