From deac5ca5b8ca7eaeb292cc884b73654f1990c122 Mon Sep 17 00:00:00 2001 From: Jacob Date: Sat, 28 Dec 2024 19:02:36 -0500 Subject: [PATCH] Updated README. --- README.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 97c5f4a..3705329 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,20 @@ # SCL: Simple CAS Language +## Usage + +```bash +git clone https://git.signorovitch.org/jacob/scl && cd scl +make release # Build. +./scl # Run. +``` + ## Current State The following things are possible: 1. Floating-point numbers 2. Negative numbers - 3. Addition - 4. Subtraction - 5. Multiplication + 3. Basic binary infix operators; +, -, \*, / + 4. The same as conventional functions; sum(), sub(), mul(), div() ## Syntax (Planned)