From b1a937dc13d6990c7d43ad223f84342a6c3c5d73 Mon Sep 17 00:00:00 2001 From: Tristan Smith Date: Sun, 15 Sep 2024 15:59:42 -0400 Subject: [PATCH] updated a few lines --- index.html | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index e18219b..a72005c 100644 --- a/index.html +++ b/index.html @@ -52,6 +52,7 @@

Getting Started

+

Keep in mind, this is only at the lexer stage currently. It'll read your inputs and that's it.

To clone the repo:

git clone https://git.fddl.dev/tristan/fddl.git

To run the REPL:

@@ -60,7 +61,7 @@
cargo run path/to/script.fddl

Examples

-

Your basic hello, world:

+

Your basic "hello, world":


 func main() {
     print(`hello, world in fddl`);
@@ -85,7 +86,7 @@ print(`The square of $number is ${math.square($number)}`);

Notes and Next Steps