diff options
| author | nodist <kevin.comas.git@gmail.com> | 2026-05-20 15:16:19 -0400 |
|---|---|---|
| committer | nodist <kevin.comas.git@gmail.com> | 2026-05-20 15:16:19 -0400 |
| commit | 83729ca507a3266f3793c3ff2db7229a86e80aa6 (patch) | |
| tree | 03c9d6d7c9443bbe67c1f3ab53618d719cff3228 /docs/syntax | |
| parent | dcf57ffd19ee65c46e9ee635ca6f8238b8f1f07f (diff) | |
mutiple next unions
Diffstat (limited to 'docs/syntax')
| -rw-r--r-- | docs/syntax/operators.md | 10 |
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` |
