From ae278e42adde56c9869455d87928b7e7e30e6bbb Mon Sep 17 00:00:00 2001 From: Jeff Date: Mon, 29 Jan 2024 21:32:56 -0500 Subject: [PATCH] Edit docs --- README.md | 13 +++++-------- docs/language.md | 2 +- 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 7f7df62..d9f2e02 100644 --- a/README.md +++ b/README.md @@ -34,17 +34,10 @@ Dust is an interpreted, strictly typed language with first class functions. It e - [Dust](#dust) - [Features](#features) - [Usage](#usage) + - [Dust Language](#dust-language) - [Installation](#installation) - [Benchmarks](#benchmarks) - [Implementation](#implementation) - - [The Dust Programming Language](#the-dust-programming-language) - - [Declaring Variables](#declaring-variables) - - [Lists](#lists) - - [Maps](#maps) - - [Loops](#loops) - - [Functions](#functions) - - [Option](#option) - - [Concurrency](#concurrency) - [Acknowledgements](#acknowledgements) @@ -82,6 +75,10 @@ Options: -V, --version Print version ``` +## Dust Language + +See [Language Reference](/docs/language.md) for more information. + ## Installation You must have the default rust toolchain installed and up-to-date. Install [rustup] if it is not already installed. Run `cargo install dust-lang` then run `dust` to start the interactive shell. Use `dust --help` to see the full command line options. diff --git a/docs/language.md b/docs/language.md index eb839cc..9c7ba32 100644 --- a/docs/language.md +++ b/docs/language.md @@ -1,4 +1,4 @@ -# The Dust Programming Language +# Dust Language Reference !!! This is a **work in progress** and has incomplete information. !!!