From 0092c303902227ad445250ed4ff6dfd27690cc6e Mon Sep 17 00:00:00 2001 From: Simon Brooke Date: Wed, 4 Jan 2017 19:13:17 +0000 Subject: [PATCH] Added Cargo.toml and main.rs, even though neither does anything of interest yet. --- Cargo.toml | 7 +++++++ src/main.rs | 4 ++++ 2 files changed, 11 insertions(+) create mode 100644 Cargo.toml create mode 100644 src/main.rs diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..51f1459 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,7 @@ +[package] + +name = "post_scarcity" +version = "0.1.0" +authors = ["Simon Brooke "] + +[dependencies] \ No newline at end of file diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..b310394 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,4 @@ +fn main() { + println!("Post-scarcity software environment, version 0"); + println!("Note: This does not work yet."); +}