summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-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
4 files changed, 16 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]
+```