diff options
author | Till Hoeppner | 2015-04-18 15:12:41 +0200 |
---|---|---|
committer | Till Hoeppner | 2015-04-18 15:12:41 +0200 |
commit | 3483b65e9173d9ef7ea709de898b3a7866045fbd (patch) | |
tree | 3c51860688f8c963e71d2ff372ec3c343ca466a8 /examples/01.rs | |
parent | a8c80253d6361728db95e6a5640a91a341ad4ea5 (diff) | |
download | irsc-3483b65e9173d9ef7ea709de898b3a7866045fbd.tar.gz irsc-3483b65e9173d9ef7ea709de898b3a7866045fbd.tar.xz irsc-3483b65e9173d9ef7ea709de898b3a7866045fbd.zip |
Make tests/examples compile, not work though
Diffstat (limited to 'examples/01.rs')
-rw-r--r-- | examples/01.rs | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/examples/01.rs b/examples/01.rs index 021fd2f..ee6c99a 100644 --- a/examples/01.rs +++ b/examples/01.rs @@ -1,5 +1,4 @@ -#![allow(unstable)] -#![feature(plugin, slicing_syntax)] +#![feature(plugin)] #![plugin(regex_macros)] extern crate irsc; @@ -10,7 +9,6 @@ use std::sync::{Once, ONCE_INIT}; use irsc::server::Server; use irsc::color::bold; -use irsc::message; use irsc::message::{ Message, Command }; static NAME: &'static str = "rusticbot"; @@ -30,8 +28,6 @@ fn callback(server: &mut Server, msg: &Message) { /* "001" => { START.call_once(|| { - server.msg("Nalfon", "Hey, I'm poking you! *pokes you*").unwrap(); - //server.msg("Xasin", "Hey, I'm poking you! *pokes you*").unwrap(); }) }, _ => () @@ -40,7 +36,7 @@ fn callback(server: &mut Server, msg: &Message) { fn main() { let mut s = Server::new(); - s.connect("irc.furnet.org".to_owned(), 6667).unwrap(); + s.connect("irc.mozilla.org".to_owned(), 6667).unwrap(); s.nick(NAME).unwrap(); s.user(NAME, "*", "*", DESC).unwrap(); s.join("#botzoo").unwrap(); |