blob: 151752566f3282441a02bc0fa6d1f4140e5c3093 (
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
|
Version 0.0.1
# The TNSL Language Specification
## Forward
As of writing this forward, TNSL is not even a language yet. Right now, it's mostly just a stupid idea that I've devoted too much brain-space to, and I'm not confident will ever take off. The hard-core C folk will probably write it off, as well as the new-fangled rust/golangers with all their type safety.
Right now, TNSL isn't a language. But it *could* be. And, really, I think it's a cool challenge to try to pack high-level features into a low-level environment. I hope you find it interesting as well.
-Kyle
## Chapter Index
1. [The Language](./1.md)
- Files
- Blocks
- Statements
- Types
- Operators
- `raw` and `asm`
2. [Related features](./2.md)
- Style guide
- Compiler Options
- The Pre-Processor
- libtnsl
- TNSL-lang export trees (T-LETs)
3. [The TNSL Calling ABI](./3.md)
- Differences from C
- Exporting C-like Functions
- Types and Arrays in Memory
4. [Features in Position](./4.md)
- Bare Metal
- `libtnsl` as it relates to Types
- Cross Calling to C
- [Appendix](./Appendices.md)
- A: Reserved Characters
- B: Reserved Words
- C: Speed vs the Type System
## Credits
Copyright 2021 Kyle Gunger
This file is licensed under the CDDL 1.0 (the License)
and may only be used in accordance with the License.
You should have received a copy of the License with this
software/source code. If you did not, a copy can be found
at the following URL:
https://opensource.org/licenses/CDDL-1.0
THIS SOFTWARE/SOURCE CODE IS PROVIDED "AS IS" WITH NO
WARRANTY, GUARANTEE, OR CLAIM OF FITNESS FOR ANY PURPOSE
EXPRESS OR IMPLIED
|