This commit is contained in:
William Mantly 2018-01-18 13:49:09 -05:00
commit 39137c48a2
Signed by: wmantly
GPG Key ID: E1EEC7650BA97160
3 changed files with 12 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
/target/
**/*.rs.bk

6
Cargo.toml Normal file
View File

@ -0,0 +1,6 @@
[package]
name = "guessing_game"
version = "0.1.0"
authors = ["William Mantly <wmantly@gmail.com>"]
[dependencies]

3
src/main.rs Normal file
View File

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