# 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 ``` ## ``panic` Stops execution and prints `Any` to `stdout` ```text `panic any ``` ## ``type`