updated a few lines

This commit is contained in:
Tristan Smith 2024-09-15 15:59:42 -04:00
parent 898444b7ab
commit b1a937dc13

View File

@ -52,6 +52,7 @@
</ul> </ul>
<h2>Getting Started</h2> <h2>Getting Started</h2>
<p>Keep in mind, this is only at the lexer stage currently. It'll read your inputs and that's it.</p>
<p>To clone the repo:</p> <p>To clone the repo:</p>
<pre><code class="language-bash">git clone https://git.fddl.dev/tristan/fddl.git</code></pre> <pre><code class="language-bash">git clone https://git.fddl.dev/tristan/fddl.git</code></pre>
<p>To run the REPL:</p> <p>To run the REPL:</p>
@ -60,7 +61,7 @@
<pre><code class="language-bash">cargo run path/to/script.fddl</code></pre> <pre><code class="language-bash">cargo run path/to/script.fddl</code></pre>
<h2>Examples</h2> <h2>Examples</h2>
<p>Your basic hello, world:</p> <p>Your basic "hello, world":</p>
<pre><code class="language-rust"> <pre><code class="language-rust">
func main() { func main() {
print(`hello, world in fddl`); print(`hello, world in fddl`);
@ -85,7 +86,7 @@ print(`The square of $number is ${math.square($number)}`);</code></pre>
<div class="notes"> <div class="notes">
<h2>Notes and Next Steps</h2> <h2>Notes and Next Steps</h2>
<ul> <ul>
<li class="task-list-item"><input type="checkbox" checked disabled> Added first new set of tokens and features, added the first lexer tests.</li> <li class="task-list-item"><input type="checkbox" checked disabled> Added first new set of tokens and features, added the first <code>lexer</code> tests.</li>
<li class="task-list-item"><input type="checkbox" disabled> <code>parser</code> module is a placeholder.</li> <li class="task-list-item"><input type="checkbox" disabled> <code>parser</code> module is a placeholder.</li>
<li class="task-list-item"><input type="checkbox" disabled> <code>interpreter</code> module is a placeholder.</li> <li class="task-list-item"><input type="checkbox" disabled> <code>interpreter</code> module is a placeholder.</li>
<li class="task-list-item"><input type="checkbox" disabled> Implement a more robust error handling mechanism instead of using <code>stderr</code>.</li> <li class="task-list-item"><input type="checkbox" disabled> Implement a more robust error handling mechanism instead of using <code>stderr</code>.</li>