thag_rs 0.2.1

A versatile cross-platform playground and REPL for Rust snippets, expressions and programs. Accepts a script file or dynamic options.
Documentation
1
2
3
4
5
6
7
/// Published simple example from `inline_colorization` crate. Simple effective inline
/// styling option for text messages.
//# Purpose: Demo featured crate, also how we can often run an incomplete snippet "as is".
//# Categories: async, crates, technique
use inline_colorization::{color_red, color_reset, style_reset, style_underline};

println!("Lets the user {color_red}colorize{color_reset} and {style_underline}style the output{style_reset} text using inline variables");