2024-08-18 21:23:02 -07:00
|
|
|
# Documentation
|
2024-08-18 15:30:40 -07:00
|
|
|
|
2024-08-18 21:23:02 -07:00
|
|
|
This is an overview of the documentation on Tomo.
|
|
|
|
|
|
|
|
## Topics
|
|
|
|
|
|
|
|
A few topics that are documented:
|
|
|
|
|
|
|
|
- [Compilation Pipeline](compilation.md)
|
2024-08-19 12:57:06 -07:00
|
|
|
- [Functions](functions.md)
|
2024-08-18 21:23:02 -07:00
|
|
|
- [Libraries/Modules](libraries.md)
|
|
|
|
- [Namespacing](namespacing.md)
|
|
|
|
- [Operator Overloading](operators.md)
|
2024-08-19 12:57:06 -07:00
|
|
|
- [Special Methods](metamethods.md)
|
2024-08-18 15:30:40 -07:00
|
|
|
|
|
|
|
## Types
|
|
|
|
|
2024-08-18 21:23:02 -07:00
|
|
|
Information about Tomo's built-in types can be found here:
|
|
|
|
|
2024-08-18 15:30:40 -07:00
|
|
|
- [Arrays](arrays.md)
|
|
|
|
- [Booleans](booleans.md)
|
|
|
|
- [Channels](channels.md)
|
2024-08-18 18:19:50 -07:00
|
|
|
- [Enums](enums.md)
|
2024-08-18 15:30:40 -07:00
|
|
|
- [Floating point numbers](nums.md)
|
|
|
|
- [Integer Ranges](ranges.md)
|
2024-08-18 18:19:50 -07:00
|
|
|
- [Integers](integers.md)
|
2024-08-19 11:41:04 -07:00
|
|
|
- [Languages](langs.md)
|
2024-08-18 15:30:40 -07:00
|
|
|
- [Sets](sets.md)
|
2024-08-18 18:19:50 -07:00
|
|
|
- [Structs](structs.md)
|
2024-08-18 15:30:40 -07:00
|
|
|
- [Tables](tables.md)
|
|
|
|
- [Text](text.md)
|
|
|
|
- [Threads](threads.md)
|
|
|
|
|
|
|
|
## Built-in Functions
|
|
|
|
|
|
|
|
### `say`
|
|
|
|
|
|
|
|
**Description:**
|
|
|
|
Prints a message to the console.
|
|
|
|
|
|
|
|
**Usage:**
|
|
|
|
```markdown
|
|
|
|
say(text:Text) -> Void
|
|
|
|
```
|
|
|
|
|
|
|
|
**Parameters:**
|
|
|
|
|
|
|
|
- `text`: The text to print.
|
|
|
|
|
|
|
|
**Returns:**
|
|
|
|
Nothing.
|
|
|
|
|
|
|
|
**Example:**
|
|
|
|
```markdown
|
|
|
|
say("Hello world!")
|
|
|
|
```
|
|
|
|
|
|
|
|
---
|
|
|
|
|
|
|
|
### `fail`
|
|
|
|
|
|
|
|
**Description:**
|
|
|
|
Prints a message to the console, aborts the program, and prints a stack trace.
|
|
|
|
|
|
|
|
**Usage:**
|
|
|
|
```markdown
|
|
|
|
fail(message:Text) -> Abort
|
|
|
|
```
|
|
|
|
|
|
|
|
**Parameters:**
|
|
|
|
|
|
|
|
- `message`: The error message to print.
|
|
|
|
|
|
|
|
**Returns:**
|
|
|
|
Nothing, aborts the program.
|
|
|
|
|
|
|
|
**Example:**
|
|
|
|
```markdown
|
|
|
|
fail("Oh no!")
|
|
|
|
```
|