File: red-hello.rs

package info (click to toggle)
rust-output-vt100 0.1.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 100 kB
  • sloc: makefile: 2
file content (6 lines) | stat: -rw-r--r-- 118 bytes parent folder | download | duplicates (10)
1
2
3
4
5
6
extern crate output_vt100;

fn main() {
    output_vt100::init();
    println!("\x1b[31mThis text is red!\x1b[0m");
}