summaryrefslogtreecommitdiff
path: root/docs/syntax/operators.md
diff options
context:
space:
mode:
authornodist <kevin.comas.git@gmail.com>2026-06-02 16:26:09 -0400
committernodist <kevin.comas.git@gmail.com>2026-06-02 16:26:09 -0400
commitb26ad08b39b8229dcea0bafc4a8ba4b0d7ad7154 (patch)
tree1a469cc7f1ab2bbf2af42336518fa19ad0d0ed76 /docs/syntax/operators.md
parentba087e5dbcc50537d82da5dbc602df7292d3f24c (diff)
reformat with sync and async calls
Diffstat (limited to 'docs/syntax/operators.md')
-rw-r--r--docs/syntax/operators.md69
1 files changed, 0 insertions, 69 deletions
diff --git a/docs/syntax/operators.md b/docs/syntax/operators.md
deleted file mode 100644
index dc518ab..0000000
--- a/docs/syntax/operators.md
+++ /dev/null
@@ -1,69 +0,0 @@
-# General Operators
-
----
-
-## Assign `:`
-
-## Shadow `::`
-
-## Cast `$`
-
-## ``print`
-
-```text
-Result[I32] : Is[File; Void] `print Any
-```
-
-If no `File` is specified the output is send to `stdout`
-
-## ``format`
-
-```text
-Result[String] : Const[String]`format Any
-```
-
-### Formatting
-
-#### Replace
-
-Use `%` to indicate an item from `Any`, use `\%` for a literal `%`
-
-#### Colors
-
-Use `#NAME#` to change the text color, use `#` to reset the text color, use `\#` for a literal `#`
-
-```text
-BOLD
-FAINT
-ITALIC
-UNDERLINE - UL
-
-BACKGROUND - BG
-LIGHT
-
-BLACK
-RED
-GREEN
-YELLOW
-BLUE
-MAGENTA
-CYAN
-GREY
-WHITE
-```
-
-`#NAME#NAME#` use single `#` to apply multiple colors at once
-
-## ``panic`
-
-Stops execution and prints `Any` to `stdout`
-
-```text
-`panic any
-```
-
-## ``type`
-
-## ``return_type`
-
-## ``fork_type`