usenoct::{KeyboardControllable, Noct};usestd::thread;usestd::time::Duration;fnmain(){thread::sleep(Duration::from_secs(2));letmut noct =Noct::new();// write text and select all
noct.key_sequence_parse("{+UNICODE}{{Hello World!}} ❤️{-UNICODE}{+CTRL}a{-CTRL}");}