From 464007f091e7d6e57d7345ba385106904ce9c108 Mon Sep 17 00:00:00 2001 From: Jake Date: Thu, 5 Sep 2024 17:27:23 -0700 Subject: [PATCH] Add more docs --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index e04375b..26f92d0 100644 --- a/README.md +++ b/README.md @@ -18,11 +18,14 @@ Note that the symbol `>` is used in code example to show that these expressions - `int` converts types into NumericIntLiteral if possible - `dec` converts types into NumericDecLiteral if possible +- `bool` converts types into BoolLiteral if possible ## Constants - `e` Euler's number - `pi` Pi - `C` Speed of light in m/s +- `true` Boolean true +- `false` Boolean false ## Built-in Functions - `sqrt` Square root @@ -33,6 +36,8 @@ Note that the symbol `>` is used in code example to show that these expressions - `*` multiplication - `/` division - `^` exponentiation +- `!` logical not +- `?` conditional assignment ## Basic Math Operations Add two numbers together.