summaryrefslogtreecommitdiffstats
path: root/examples/client.rs
blob: f1f2479424824fc700502d3fce9ce5ac902cbb46 (plain) (blame)
1
2
3
4
5
6
7
8
extern crate irc;

fn main () {
    let mut client = irc::ClientBuilder::new("doytest", "chat.freenode.net").connect();
    client.run_loop_with(|m| {
        println!("{}", m);
    });
}