Skip to content

Instantly share code, notes, and snippets.

@yakuter
Last active November 3, 2022 19:40
Show Gist options
  • Save yakuter/9dcc788a2f480579a13f12623f2a8303 to your computer and use it in GitHub Desktop.
Save yakuter/9dcc788a2f480579a13f12623f2a8303 to your computer and use it in GitHub Desktop.
Empty Struct
// Versiyon 1
package main
import "fmt"
type Foo struct{}
func main() {
a := &Foo{}
b := &Foo{}
fmt.Println(a == b)
}
// Output: false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment