This commit is contained in:
Jake Probst 2019-05-29 22:33:50 -07:00
commit bfc65cedea
2 changed files with 11 additions and 0 deletions

8
Cargo.toml Normal file
View File

@ -0,0 +1,8 @@
[package]
name = "flowen"
version = "0.1.0"
authors = ["Jake Probst <jake.probst@gmail.com>"]
edition = "2018"
[dependencies]
libpso = { path = "../libpso" }

3
src/main.rs Normal file
View File

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