rust-irc/examples/tweeter.rs
2015-03-21 23:08:41 -04:00

28 lines
839 B
Rust

#![feature(std_misc, thread_sleep)]
extern crate irc;
use std::default::Default;
use std::sync::Arc;
use std::thread::{sleep, spawn};
use std::time::duration::Duration;
use irc::client::prelude::*;
fn main() {
let config = Config {
nickname: Some(format!("pickles")),
server: Some(format!("irc.fyrechat.net")),
channels: Some(vec![format!("#vana")]),
.. Default::default()
};
let server = Arc::new(IrcServer::from_config(config).unwrap());
server.identify().unwrap();
let server2 = server.clone();
// Let's set up a loop that just prints the messages.
spawn(move || {
server2.iter().map(|m| print!("{}", m.unwrap().into_string())).count();
});
loop {
server.send_privmsg("#vana", "TWEET TWEET").unwrap();
sleep(Duration::seconds(10))
}
}