Fenced in code blocks for Syntax Highlighting (#23698)

This commit is contained in:
Andres
2018-11-17 05:01:10 -05:00
committed by Aditya
parent f9ae2c107a
commit bc09a7b179

View File

@ -14,19 +14,19 @@ Pointers
Go has pointers. A pointer holds the memory address of a value.
The type *T is a pointer to a T value. Its zero value is nil.
```go
var p *int
```
The & operator generates a pointer to its operand.
```go
i := 42
p = &i
```
The * operator denotes the pointer's underlying value.
```go
fmt.Println(*p) // read i through the pointer p
*p = 21 // set i through the pointer p
```
This is known as "dereferencing" or "indirecting".
Unlike C, Go has no pointer arithmetic.