Skip to content

Instantly share code, notes, and snippets.

@wesleymatosdev
Created September 20, 2022 13:43
Show Gist options
  • Select an option

  • Save wesleymatosdev/c7e0ca838def109feee96f628e35b3e3 to your computer and use it in GitHub Desktop.

Select an option

Save wesleymatosdev/c7e0ca838def109feee96f628e35b3e3 to your computer and use it in GitHub Desktop.
package main
import "fmt"
func main() {
var s []int
fmt.Println(s, len(s), cap(s))
if s == nil {
fmt.Println("nil!")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment