Skip to content

Instantly share code, notes, and snippets.

View missingno15's full-sized avatar

Kenneth Uy missingno15

  • Tokyo
  • 04:49 (UTC +09:00)
View GitHub Profile
@jamesrr39
jamesrr39 / Go Pointers.md
Last active February 19, 2019 04:05
Go Pointers

Go pointers

This gist demonstrates the use of pointers in go (and other similar languages)

Use &x to get the address of x

Use *x to get a value from an address x

When should I use a pointer?