Skip to content

Commit 3be2643

Browse files
committed
stub out more stuff
1 parent f8be073 commit 3be2643

File tree

3 files changed

+11
-0
lines changed

3 files changed

+11
-0
lines changed

ffi.md

Whitespace-only changes.

intro.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,17 @@ Unsafe Rust. TURPL does not assume you have read TRPL, but does assume you know
77
the basics of the language and systems programming. We will not explain the
88
stack or heap, we will not explain the syntax.
99

10+
## Sections
11+
12+
* [Data Layout](data.html)
13+
* [Ownership and Lifetimes](lifetimes.html)
14+
* [Conversions](conversions.html)
15+
* [Uninitialized Memory](uninitialized.html)
16+
* [Ownership-oriented resource management (RAII)](raii.html)
17+
* [Concurrency](concurrency.html)
18+
* [Interfacing with other languages (FFI)](ffi.html)
19+
* [Eliminating the Runtime (no_std)](no_std.html)
20+
1021
## A Tale Of Two Languages
1122

1223
Rust can be thought of as two different languages: Safe Rust, and Unsafe Rust.

no_std.md

Whitespace-only changes.

0 commit comments

Comments
 (0)