Added Cargo.toml and main.rs, even though neither does anything of interest

yet.
This commit is contained in:
Simon Brooke 2017-01-04 19:13:17 +00:00
parent ccdad5b974
commit 0092c30390
2 changed files with 11 additions and 0 deletions

7
Cargo.toml Normal file
View file

@ -0,0 +1,7 @@
[package]
name = "post_scarcity"
version = "0.1.0"
authors = ["Simon Brooke <simon@journeyman.cc>"]
[dependencies]

4
src/main.rs Normal file
View file

@ -0,0 +1,4 @@
fn main() {
println!("Post-scarcity software environment, version 0");
println!("Note: This does not work yet.");
}