Kebab Docs

Sets

Set is another datatype in Kebab. They resemble arrays/lists in the sense that they store multiple values inside, but the values aren't ordered and sets can be infinite.
There are 2 ways to declare sets in Kebab.

Sets can also be infinite: {x|x>9}
You can check if a value is contained in a set using in or .
2 in {1, 3, 4} ---> false
4 ∊ {1, 3, 4} ---> true

Built-in Sets

Operations

Boolean Expressions