Go

Reference:

Concurrency

  • Setup
  • Environment Variables Reference: GOPATH: environment variable that specifies the location of your workspace. If no GOPATH is set, it is assumed to be $HOME/go on Unix systems and %USERPROFILE%\go on Windows. more Binary Package Download Getting Started with Go Build from Source Install Go from Source Uninstalling Go delete go directory. usually /usr/local/go under Unix or c:\Go on Windows. remove Go bin directory from the $PATH environment variable. usually /etc/profile, or $HOME/.

  • Tour
  • A Tour of Go Types basic types: bool; // false is zero (initial) value for bool string; // “” (the empty string) is zero (initial) value for string int, int8, int16, int32, int64 uint, uint8, uint16, uint32, uint64, uintptr byte // alias for uint8 rune // alias for int32, Unicode point float32, float64 complex64, complex128 package main import ( "fmt" "math/cmplx" ) var ( ToBe bool = false MaxInt uint64 = 1<<64 - 1 z complex128 = cmplx.

Created Jul 30, 2019 // Last Updated May 18, 2021

If you could revise
the fundmental principles of
computer system design
to improve security...

... what would you change?