blob: 1acba96437e9d6faa2b19c6fbceeb3d90eab131c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
Conventions
===========
Global function names try to follow a certain schema. The initial character (and sometimes later ones as well)
roughly connect to various topics as follows:
* `!`: Co-routines
* `"`: Strings
* `#`: Scope based complex data types; comments
* `$`: -
* `%`: -
* `&`: -
* `'`: Types
* `(`: -
* `)`: -
* `*`: Function execution
* `+`: -
* `,`: -
* `-`: Stack manipulation
* `.`: Field dereference
* `/`: Keyword-like strings
* `:`: -
* `;`: Function composition
* `<`: Scope start
* `=`: Assignment
* `>`: Scope end
* `?`: Ternary operator; error handling
* `@`: -
* `[`: Array begin
* `\`: Executing dereference
* `]`: Array end
* `^`: -
* `_`: Stack manipulation
* `` ` ``: -
* `{`: Code begin
* `|`: Nonexecuting dereference
* `}`: Code end
* `~`: -
|