summaryrefslogtreecommitdiff
path: root/docs/syntax
diff options
context:
space:
mode:
authornodist <kevin.comas.git@gmail.com>2026-05-20 15:16:19 -0400
committernodist <kevin.comas.git@gmail.com>2026-05-20 15:16:19 -0400
commit83729ca507a3266f3793c3ff2db7229a86e80aa6 (patch)
tree03c9d6d7c9443bbe67c1f3ab53618d719cff3228 /docs/syntax
parentdcf57ffd19ee65c46e9ee635ca6f8238b8f1f07f (diff)
mutiple next unions
Diffstat (limited to 'docs/syntax')
-rw-r--r--docs/syntax/operators.md10
1 files changed, 6 insertions, 4 deletions
diff --git a/docs/syntax/operators.md b/docs/syntax/operators.md
index d382bcc..51713d9 100644
--- a/docs/syntax/operators.md
+++ b/docs/syntax/operators.md
@@ -11,15 +11,17 @@
## ``print`
```text
-TO `print DATA
+Result[I32] : Is[File; Void] `print DATA
```
-If `TO` is not specified the output is send to `STDOUT`
+If no `File` is specified the output is send to `stdout`
## ``panic`
-```test
-`panic ANY
+Stops execution and prints `Any` to `stdout`
+
+```text
+`panic any
```
## ``type`