You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
292 B

use ssip_client::{ClientName, ClientResult};
fn main() -> ClientResult<()> {
let mut client = ssip_client::new_default_fifo_client(&ClientName::new("joe", "hello"), None)?;
let msg_id = client.say_line("hello")?;
println!("message: {}", msg_id);
client.quit()?;
Ok(())
}