ltpp-output 3.0.0

An atomic output library based on Rust that supports output functionalities through functions, builders, and other methods. It allows customization of text and background colors.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use crate::time::{
    r#type::{from_env_var, Lang},
    time::get_now_time_format,
};

#[test]
fn test_lang() {
    println!("test_lang: {}", from_env_var());
}

#[test]
fn test_now_time() {
    println!("test_now_time: {}", get_now_time_format());
}