mirror of
https://git.fddl.dev/fddl/fddl.dev.git
synced 2024-12-26 15:26:35 +00:00
updated a few lines
This commit is contained in:
parent
898444b7ab
commit
b1a937dc13
1 changed files with 3 additions and 2 deletions
|
@ -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>
|
||||||
|
|
Loading…
Reference in a new issue