From 6cd3d238354af4ad638520a4e279785ad3748b6c Mon Sep 17 00:00:00 2001 From: Graham Christensen Date: Fri, 1 Dec 2017 20:59:01 -0500 Subject: [PATCH] ircbot: init --- ircbot/Cargo.toml | 6 ++++++ ircbot/src/main.rs | 3 +++ 2 files changed, 9 insertions(+) create mode 100644 ircbot/Cargo.toml create mode 100644 ircbot/src/main.rs 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!"); +}