feat: added cleanscript
This commit is contained in:
15
ch04/ch04-00-understanding-ownership.html
Normal file
15
ch04/ch04-00-understanding-ownership.html
Normal file
@@ -0,0 +1,15 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Understanding Ownership</title>
|
||||
</head>
|
||||
<body>
|
||||
<h1 id="understanding-ownership"><a class="header" href="#understanding-ownership">Understanding Ownership</a></h1>
|
||||
<p>Ownership is Rust’s most unique feature and has deep implications for the rest
|
||||
of the language. It enables Rust to make memory safety guarantees without
|
||||
needing a garbage collector, so it’s important to understand how ownership
|
||||
works. In this chapter, we’ll talk about ownership as well as several related
|
||||
features: borrowing, slices, and how Rust lays data out in memory.</p>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user