Revision history of "Golang Pointers"

Jump to navigation Jump to search

Diff selection: Mark the radio boxes of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

  • curprev 04:27, 10 January 2021Busk talk contribs 193 bytes +193 Created page with "``` Because Golang string is a read-only slices of bytes. However, a pointer to a string (*string) can be nil: var s *string s = nil readonly := "readonly" s = &readonly der..."