cargo init

This commit is contained in:
2020-03-14 16:54:40 -07:00
parent 2e4e80aeda
commit 1f077745b8
2 changed files with 10 additions and 0 deletions

7
Cargo.toml Normal file
View File

@@ -0,0 +1,7 @@
[package]
name = "wablength"
version = "0.1.0"
authors = ["Jared Burce <jaredr@gmail.com>"]
edition = "2018"
[dependencies]

3
src/main.rs Normal file
View File

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