From c45b5ba975f78b23c7feb07e3cfaa171620c2f96 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Sun, 26 Jun 2016 11:17:30 +0200 Subject: [PATCH] Initial import --- imag-ref/Cargo.toml | 6 ++++++ imag-ref/src/main.rs | 3 +++ 2 files changed, 9 insertions(+) create mode 100644 imag-ref/Cargo.toml create mode 100644 imag-ref/src/main.rs diff --git a/imag-ref/Cargo.toml b/imag-ref/Cargo.toml new file mode 100644 index 00000000..ca65a1a8 --- /dev/null +++ b/imag-ref/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "imag-ref" +version = "0.1.0" +authors = ["Matthias Beyer "] + +[dependencies] diff --git a/imag-ref/src/main.rs b/imag-ref/src/main.rs new file mode 100644 index 00000000..e7a11a96 --- /dev/null +++ b/imag-ref/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}