basic-text 0.19.1

Basic Text strings and I/O streams
Documentation
1
2
3
4
5
6
use basic_text::text;

fn main() {
    let hello = text!("hello world");
    println!("{}", hello)
}