vtcode-core 0.100.3

Core library for VT Code - a Rust-based terminal coding agent
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use vtcode_core::ui::styled::*;

fn main() {
    // Test the migrated styling
    info("Testing migrated styling from main_modular.rs");
    println!(
        "{}Debug message{}",
        Styles::debug().render(),
        Styles::debug().render_reset()
    );
    println!(
        "{}Info message with custom styling{}",
        Styles::info().render(),
        Styles::info().render_reset()
    );

    println!("Migration test completed successfully!");
}