talk-12ja3

(★ 13)

Talk sobre sincronização e orquestração de código concorrente em Go

File Explorer

  • avatar-redondo.png
  • data_race.png
  • go.mod
  • go.sum
  • main.slide
  • README.md
  • volleyball-machine.jpeg
  • wildlife-logo.png

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

go install

View Details ▼

Compile and install packages named by the import paths.

go install

Compile and install the current package:

go install {{path/to/package}}

Compile and install a specific local package:

go install {{golang.org/x/tools/gopls}}@{{latest}}

Install the latest version of a program, ignoring `go.mod` in the current directory:

// repository documentation