blob: 0b1140e353c72e54acc0bfa472d78ecb8c7e9865 (
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
|
# Definitions
Kevin's nomenclature for Kevin's language
---
## Syntax Definitions
### Var `[a-z][0-9A-Za-z_]{0,49}`
### Type `[A-Z][0-9A-Za-z_]{0,49}`
### Qualifier `%[a-z]\+`
### Symbol `\.[0-9A-Za-z_]{1,50}`
### Character `'\\?.'
### String `".*?"`
### Operator ``[a-z].*?\|[~!$&*-+=|:;,./]`
### Statement
### Separator `\n\|;`
### List `()`
### Definition `[]`
### Action `[@#^?]`
### Body `{}`
## Runtime Definitions
### Task
A collection of runtime state
### Procedure
A collection of code for a task
### Process
A collection of procedures for a task
|