You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
zk/tests/fixtures/full-sample/88el.md

230 B

Ownership in Rust

Ownership is one of Rust's most unique features and replaces efficiently a GC for memory management.

The Ownership is a method to manage data on the Heap (The Stack and the Heap).

:programming:rust: