Compare commits

..

No commits in common. "6cf3fdd5f22dd997718878ecc3e3a43250fc195d" and "3373d28f93d1fcf38f9c5ae3bc6e2c787f108ed6" have entirely different histories.

View File

@ -32,7 +32,7 @@ Ludus strings are dependent on the host platform. Given that Ludus either runs i
Strings' type is `:string`.
## Collections
Ludus has a few different types of collections, in increasing order of complexity: tuples, lists, sets, dicts, and namespaces.
Ludus has a few different types of collections, in increasing order of complexity.
### Separators
In all collection literals, members are written with a separator between them. On the same line, use a comma; or a newline will also separate elements. You may use as many separators as you wish at any point inside a collection or pattern. `(,,,,,,,3,,4,,,,,,)` and `(3, 4)` are the same value.