2020-06-27 12:11:55 -03:00

11 lines
415 B
Markdown

### Pointers
Rust is a low level low-level programming language and focus on high level code performance, for this
is necessary a good memory management and this infers on the use of pointers.
Pointers is a primitive type, that allows to access the memory address of a variable, or the value
alocated on an specific address.
#### Book Sections
- [Pointers](https://doc.rust-lang.org/std/primitive.pointer.html)