Added example

Este commit está contenido en:
Phuntsok Drak-pa 2019-02-14 14:09:18 +01:00
padre f60e3b43b4
commit cb9aa04812
Se han modificado 1 ficheros con 6 adiciones y 0 borrados

6
examples/red-hello.rs Archivo normal
Ver fichero

@ -0,0 +1,6 @@
extern crate output_vt100;
fn main() {
output_vt100::init();
println!("\x1b[31mThis text is red!\x1b[0m");
}