aboutsummaryrefslogtreecommitdiff
path: root/vendor/console/examples/cursor_at.rs
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
committerValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
commita990de90fe41456a23e58bd087d2f107d321f3a1 (patch)
tree15afc392522a9e85dc3332235e311b7d39352ea9 /vendor/console/examples/cursor_at.rs
parent3d48cd3f81164bbfc1a755dc1d4a9a02f98c8ddd (diff)
downloadfparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.tar.xz
fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.zip
Deleted vendor folder
Diffstat (limited to 'vendor/console/examples/cursor_at.rs')
-rw-r--r--vendor/console/examples/cursor_at.rs30
1 files changed, 0 insertions, 30 deletions
diff --git a/vendor/console/examples/cursor_at.rs b/vendor/console/examples/cursor_at.rs
deleted file mode 100644
index 9a1bb3d..0000000
--- a/vendor/console/examples/cursor_at.rs
+++ /dev/null
@@ -1,30 +0,0 @@
-extern crate console;
-
-use std::io;
-use std::thread;
-use std::time::Duration;
-
-use console::{style, Term};
-
-fn write_chars() -> io::Result<()> {
- let term = Term::stdout();
- let (heigth, width) = term.size();
- for x in 0..width {
- for y in 0..heigth {
- term.move_cursor_to(x as usize, y as usize)?;
- let text = if (x + y) % 2 == 0 {
- format!("{}", style(x % 10).black().on_red())
- } else {
- format!("{}", style(x % 10).red().on_black())
- };
-
- term.write_str(&text)?;
- thread::sleep(Duration::from_micros(600));
- }
- }
- Ok(())
-}
-
-fn main() {
- write_chars().unwrap();
-}