Let's use rust for this mkay

This commit is contained in:
Dan Buch 2016-08-30 22:44:29 -04:00
parent 14fa993a97
commit ffbc653075
No known key found for this signature in database
GPG Key ID: FAEF12936DD3E3EC
4 changed files with 14 additions and 0 deletions

1
waterbill/.gitignore vendored Normal file
View File

@ -0,0 +1 @@
target/

4
waterbill/Cargo.lock generated Normal file
View File

@ -0,0 +1,4 @@
[root]
name = "waterbill"
version = "0.1.0"

6
waterbill/Cargo.toml Normal file
View File

@ -0,0 +1,6 @@
[package]
name = "waterbill"
version = "0.1.0"
authors = ["Dan Buch <daniel.buch@gmail.com>"]
[dependencies]

3
waterbill/src/main.rs Normal file
View File

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