From 8f9e8f5b252051384315dfb528ed827de2d63315 Mon Sep 17 00:00:00 2001 From: Maxwell Jeffress Date: Thu, 25 Dec 2025 22:40:00 +1100 Subject: [PATCH] update docs1 --- docs/index.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/index.html b/docs/index.html index 077d54b..e9e6990 100644 --- a/docs/index.html +++ b/docs/index.html @@ -46,6 +46,8 @@
  • Operators: these make up the actual logic of your program. Operators are thing like +, =, or if. (if and while are operators in Solstice.)
  • Code blocks: this is the collection of values, identifiers, and operators, usually in between { and }.
  • +

    Comments

    +

    You can type // to insert a comment into your program. The rest of your line will be commented out.

    puts

    The puts command in Solstice is used to print out a value. It is not a function, but a built in operator, similar to + or =.

    Use it like this: