mirror of
https://github.com/rust-lang/rustlings.git
synced 2026-01-07 19:29:18 +00:00
11 lines
415 B
Markdown
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)
|