blob: 8be80a671130ff628a721eb4ec079674faa4a927 (
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
# Syntax
---
## Comments
```text
// Comment Until End Of Line
/* Comment */
```
## Numbers
### Integers
```text
1234
1_000_000
```
### Floats
```text
1.2
```
## Glyphs
### Characters `''`
```text
'a'
'Σ'
```
### Strings `""`
## Operators
### Symbol
```text
1 + 2
```
### Named ``[a-z]\w+`
## Variables `[a-z][a-zA-Z0-9_]{0,49}`
## Constants `_[a-zA-Z0-9_]{0,49}`
## Types `[A-Z][a-zA-Z0-9_]{0,49}`
## Tags `\.[a-zA-Z0-9_]{1,50}`
## Blocks `{}`
## Collections `()`
## Modifiers `[]`
## Separators `;|\n`
## Actions
### If `?`
```text
? condition {[arguments] statements } { else statements }
? {
condition {[arguments] statements }
...
{ else statements }
}
```
### Loop `@`
```text
@.tag condition {[arguments] statements }
@.tag (statement; condition; increment) { statements }
```
#### ``break
#### ``continue
### Match `#`
```text
# match {
condition {[arguments] statements }
...
{ else statements }
}
```
## Lambdas ``{[arguments] ... }`
```text
add : `{[I64 x; I64 y] x + y }
add `sync (1; 2)
```
## Generators `^{[arguments] ... }`
```text
gen : ^{[I64 n]
@ 1 .. n {[x] `yield x }
`stop
}
it : gen `init 10
`next it
```
|