publisher/
publisher.rs

1extern crate lcm;
2use lcm::Lcm;
3
4fn main()
5{
6	let mut lcm = Lcm::new().unwrap();
7	lcm.publish("example", &"Hello, World!".to_string()).unwrap();
8}