Yotam Barak

Results 1 issues of Yotam Barak

running the following: ``` use arboard::Clipboard; fn main() { let mut clipboard = Clipboard::new().unwrap(); let the_string = "Hello, world!"; clipboard.set_text(the_string).unwrap(); println!("But now the clipboard text should be: \"{}\"", the_string); }...