summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/syntax/print.md9
-rw-r--r--docs/type_system/map.md2
-rw-r--r--docs/type_system/object.md3
-rw-r--r--docs/type_system/value.md4
-rw-r--r--mkdocs.yml1
5 files changed, 17 insertions, 2 deletions
diff --git a/docs/syntax/print.md b/docs/syntax/print.md
new file mode 100644
index 0000000..99e63fd
--- /dev/null
+++ b/docs/syntax/print.md
@@ -0,0 +1,9 @@
+# Print ``print`
+
+---
+
+```text
+TO `print DATA
+```
+
+If `TO` is not specified the output is send to `STDOUT`
diff --git a/docs/type_system/map.md b/docs/type_system/map.md
index e8c220e..9d62b13 100644
--- a/docs/type_system/map.md
+++ b/docs/type_system/map.md
@@ -9,5 +9,5 @@ Map[KEY_TYPE; VALUE_TYPE]
## Alias
```text
-Set[Any] `alias Map[Void; Any]
+Set[Any] `alias Map[Any; Void]
```
diff --git a/docs/type_system/object.md b/docs/type_system/object.md
index 6a4ec75..2f880a6 100644
--- a/docs/type_system/object.md
+++ b/docs/type_system/object.md
@@ -5,4 +5,5 @@
A representation of a native object
```text
-Object[IDENTIFIER; INTERFACE_TABLE]
+Object[INTERFACE_TABLE_POINTER]
+```
diff --git a/docs/type_system/value.md b/docs/type_system/value.md
index be36f81..53807ba 100644
--- a/docs/type_system/value.md
+++ b/docs/type_system/value.md
@@ -1,3 +1,7 @@
# Value
---
+
+```text
+Value[TYPE; DATA]
+```
diff --git a/mkdocs.yml b/mkdocs.yml
index 93b37bc..d595a1d 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -9,6 +9,7 @@ nav:
- Code: 'syntax/index.md'
- Define: 'syntax/define.md'
- Cast: 'syntax/cast.md'
+ - Print: 'syntax/print.md'
- Type System:
- Templates: 'type_system/index.md'
- Alias: 'type_system/alias.md'