diff options
| author | nodist <kevin.comas.git@gmail.com> | 2026-06-04 17:22:25 -0400 |
|---|---|---|
| committer | nodist <kevin.comas.git@gmail.com> | 2026-06-04 17:22:25 -0400 |
| commit | 1d5f5dd3cd5cc07352379fe33930770e3d203f3a (patch) | |
| tree | 9a92bdf7a34b99065d8f67f296b86743d34b2b84 /docs/application/index.md | |
| parent | a8810a00d95678cceee2a063df9c094fa6f6037d (diff) | |
use await and more application definitions
Diffstat (limited to 'docs/application/index.md')
| -rw-r--r-- | docs/application/index.md | 30 |
1 files changed, 16 insertions, 14 deletions
diff --git a/docs/application/index.md b/docs/application/index.md index e7e719f..7d97cda 100644 --- a/docs/application/index.md +++ b/docs/application/index.md @@ -6,7 +6,7 @@ * Linux X64 * GNU Make -* GCC with -std=gnu99 -fhardened +* GCC with -std=gnu99 -fhardened (14+) # Sections @@ -14,6 +14,10 @@ * ##### [Type](./type.md) * ##### [Pool](./pool.md) * ##### [Thread](./thread.md) +* ##### [Tuple](./tuple.md) +* ##### [Buffer](./buffer.md) +* ##### [Map](./map.md) +* ##### [Queue](./queue.md) * ##### [Namespace](./namespace.md) * ##### [Testing](./testing.md) @@ -21,22 +25,20 @@ ## Startup -```c -void kpl_init(void); -``` - ## Main -```c -void kpl_main(int argc, char *argv[]); -``` +### File -## File +### String/REPL -## REPL +## Evaluation -## Shutdown +1. ##### Scan +2. ##### Parse +3. ##### Scope +4. ##### Check +5. ##### Eval +6. ##### Jit +7. ##### Exec -```c -void kpl_free(void) -``` +## Shutdown |
