Skip to content

Hassan-Elseoudy/go-playground

Folders and files

NameName
Last commit message
Last commit date

Latest commit

5b40e63 · Apr 28, 2024

History

12 Commits
Apr 19, 2024
Apr 19, 2024
Apr 19, 2024
Apr 28, 2024

Repository files navigation

go-playground

go run command compiles the code into a temporary directory, and then deletes it after the program finished. go build creates executable file, that can be used to be run later.

The Zero Value

Go has a concept of zero value. When a variable is declared, it is assigned a zero value. The zero value is:

  • 0 for numeric types
  • false for the boolean type
  • "" for strings
  • nil for interfaces, slices, channels, maps, pointers and functions

Capacity and Length

  • Capacity is the total number of elements that can be stored in the slice.
  • Length is the number of elements that are currently stored in the slice.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published