ircbot: init

This commit is contained in:
Graham Christensen 2017-12-01 20:59:01 -05:00
parent a7feee1b1e
commit 6cd3d23835
No known key found for this signature in database
GPG key ID: ACA1C1D120C83D5C
2 changed files with 9 additions and 0 deletions

6
ircbot/Cargo.toml Normal file
View file

@ -0,0 +1,6 @@
[package]
name = "ircbot"
version = "0.1.0"
authors = ["Graham Christensen <graham@grahamc.com>"]
[dependencies]

3
ircbot/src/main.rs Normal file
View file

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}