Prints a message to the standard output. Example: ``` use cryptor_global::console; console::out("hello"); ```
(message: &str)
| 38 | /// console::out("hello"); |
| 39 | /// ``` |
| 40 | pub fn out(message: &str) { |
| 41 | println!("Message: {}", &message); |
| 42 | } |
| 43 | |
| 44 | /// Prints a message to the standard output. |
| 45 | /// |