blob: 080c4d6d9d3307e62ab549cf9a0b9ea2eab58e7a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
<!DOCTYPE html>
<html>
<head>
<title>Learning Rust</title>
<link rel="stylesheet" href="/style.css">
</head>
<body>
<div class="window">
<div class="window-title"><h2 style="padding: 0px; margin: 0px;">Learning Rust</h2></div>
<div class="window-content">
<p>I am a long-time proponent of C. I have been using it for most of my life, and change is scary.</p>
<p>However, I also believe in broadening my skillset and learning new things.</p>
<p>This defines my dilemma. I want to learn something new, but I want to keep using C.</p>
<p>And then the US government decree'd that us C plebs should move on to rust</p>
<p>So without further adieu, as my first foray into "blogging", welcome to my attempt to document my journey into the Rust ecosystem</p>
</div>
</div>
<div class="window">
<div class="window-content">
<p>This project, codename "Systemic", is hosted on my git server</p>
<a class="link-button" href="https://git.jonsantmyer.com/systemic">Source</a>
<p style="display: inline-block"> Requires nix and cargo. depends on <a href="https://www.raylib.com/">Raylib</a></p>
<div/>
<a class="link-button" href="1.html">1: Orbitals</a>
<p style="display: inline-block"> : How do I store non-owning references to other objects?</p>
<div/>
<a class="link-button" href="2.html">2: Systems</a>
<p style="display: inline-block"> : Why does borrowing a mutable element of Vec borrow the entire Vec?</p>
</div>
</div>
</body>
</html>
|