summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authornodist <kevin.comas.git@gmail.com>2026-05-19 12:38:35 -0400
committernodist <kevin.comas.git@gmail.com>2026-05-19 12:38:35 -0400
commit6bb1fc3b9592bbfd53770c1c04140af30ddd5120 (patch)
tree0eb0d11b828d3ae1963cd92dddcdde7590275ce8 /docs
parent7da66825a3260f3d6e22b5adbd775fef3bc57627 (diff)
put operators into its own file
Diffstat (limited to 'docs')
-rw-r--r--docs/syntax/cast.md3
-rw-r--r--docs/syntax/define.md9
-rw-r--r--docs/syntax/operators.md (renamed from docs/syntax/print.md)12
-rw-r--r--docs/type_system/object.md6
4 files changed, 17 insertions, 13 deletions
diff --git a/docs/syntax/cast.md b/docs/syntax/cast.md
deleted file mode 100644
index ab8741e..0000000
--- a/docs/syntax/cast.md
+++ /dev/null
@@ -1,3 +0,0 @@
-# Cast `$`
-
----
diff --git a/docs/syntax/define.md b/docs/syntax/define.md
deleted file mode 100644
index 358a394..0000000
--- a/docs/syntax/define.md
+++ /dev/null
@@ -1,9 +0,0 @@
-# Define
-
----
-
-For defining and updating variables
-
-## Assign `:`
-
-## Shadow `::`
diff --git a/docs/syntax/print.md b/docs/syntax/operators.md
index 99e63fd..a8b8342 100644
--- a/docs/syntax/print.md
+++ b/docs/syntax/operators.md
@@ -1,9 +1,19 @@
-# Print ``print`
+# Operators
---
+## Assign `:`
+
+## Shadow `::`
+
+## Cast `$`
+
+## Print ``print`
+
```text
TO `print DATA
```
If `TO` is not specified the output is send to `STDOUT`
+
+## ``panic`
diff --git a/docs/type_system/object.md b/docs/type_system/object.md
index 2f880a6..ca6c805 100644
--- a/docs/type_system/object.md
+++ b/docs/type_system/object.md
@@ -7,3 +7,9 @@ A representation of a native object
```text
Object[INTERFACE_TABLE_POINTER]
```
+
+## Alias
+
+```text
+File `alias Object[...]
+```