cleaned up code, added screenshot(s), road map update

This commit is contained in:
Tristan 2025-05-07 23:08:57 -04:00
parent 50f40a92c3
commit e83923f04a
2 changed files with 6 additions and 5 deletions

BIN
06.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 93 KiB

After

Width:  |  Height:  |  Size: 150 KiB

View File

@ -74,13 +74,13 @@
// if statement
if (x > 10) {
print("x is greater than 10");
print("x is greater than 10");
}
// while loop
while (x < 100) {
print(x);
let x = x + 1;
print(x);
let x = x + 1;
}
}</code></pre>
<p>At least for right now. I still want to do something odd.</p>
@ -106,9 +106,10 @@ cargo run</code></pre>
<p><strong><code>Parser</code>:</strong></p>
<ul>
<li class="task-list-item"><input type="checkbox" checked disabled> Parser parsing tilde and minus successfully.</li>
<li class="task-list-item"><input type="checkbox" disabled> Parser parsing the rest of the operators.</li>
<li class="task-list-item"><input type="checkbox" checked disabled> Parser parsing the rest of the operators. (mostly complete)</li>
<li class="task-list-item"><input type="checkbox" checked disabled> Parser parsing function calls.</li>
<li class="task-list-item"><input type="checkbox" disabled> Working on building out functions to parse simple functionality in the language (if, while, for), and to read their expressions and values</li>
<li class="task-list-item"><input type="checkbox" disabled> Implement parsing for function calls, expressions, checks, literally everything.</li>
<li class="task-list-item"><input type="checkbox" disabled> Implement parsing for <strike>function calls</strike>, expressions, checks, literally everything.</li>
</ul>
<p><strong><code>Compiler</code>:</strong></p>
<ul>