diff --git a/ircbot/Cargo.toml b/ircbot/Cargo.toml new file mode 100644 index 0000000..5abada4 --- /dev/null +++ b/ircbot/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "ircbot" +version = "0.1.0" +authors = ["Graham Christensen "] + +[dependencies] diff --git a/ircbot/src/main.rs b/ircbot/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/ircbot/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}