Skip to content
jy edited this page Aug 9, 2023 · 6 revisions

Welcome to the SSS official Documentation!

Reference is here

Overview

SSS is a set-based language, this means that the main data are sets, this leads to mind bending ways to solve problems, to put it plain, big fucking headache.

It's dynamically typed so the interpreter tries to coerce things if it can, which is entirely based on how I think. And I will not take any criticism 😍 .

The syntax is similar to Python or Nim. No var or let keyword, reassign and declaration look the same. Nextlines are significant, so are tabs(I only actually parse 4 spaces, actual tab character would probably break it)

The only way to loop or branch is with the enum keyword, since enum doesn't execute its block if the set it's looping over is empty.

Clone this wiki locally