commit 9c6b9bb42f499d1c352163b1830fe28c43c08b89 Author: Clara Benedicta Maria Müller Date: Wed Apr 12 15:54:46 2017 +0200 first programm in rust diff --git a/Cargo.lock b/Cargo.lock new file mode 100755 index 0000000..8295e51 --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,4 @@ +[root] +name = "hello_world" +version = "0.0.1" + diff --git a/Cargo.toml b/Cargo.toml new file mode 100755 index 0000000..09819c8 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,9 @@ +[package] + +name = "hello_world" +version = "0.0.1" +authors = [ "Clara Benedicta Maria Mueller " ] + +[[bin]] +name = "test" +path = "/media/win_e/Clara_Daten/etc/Programmierung/Rust/src/test.rs" diff --git a/target/debug/.cargo-lock b/target/debug/.cargo-lock new file mode 100755 index 0000000..e69de29 diff --git a/target/debug/.fingerprint/hello_world-943817d46c044558/bin-test-943817d46c044558 b/target/debug/.fingerprint/hello_world-943817d46c044558/bin-test-943817d46c044558 new file mode 100755 index 0000000..60f06fd --- /dev/null +++ b/target/debug/.fingerprint/hello_world-943817d46c044558/bin-test-943817d46c044558 @@ -0,0 +1 @@ +55aca33b8be45a9e \ No newline at end of file diff --git a/target/debug/.fingerprint/hello_world-943817d46c044558/bin-test-943817d46c044558.json b/target/debug/.fingerprint/hello_world-943817d46c044558/bin-test-943817d46c044558.json new file mode 100755 index 0000000..45097df --- /dev/null +++ b/target/debug/.fingerprint/hello_world-943817d46c044558/bin-test-943817d46c044558.json @@ -0,0 +1 @@ +{"rustc":9749998217168482212,"target":10994546209011070589,"profile":14528549471338536373,"local":{"variant":"MtimeBased","fields":[[1492003710,242703700],[47,109,101,100,105,97,47,119,105,110,95,101,47,67,108,97,114,97,95,68,97,116,101,110,47,101,116,99,47,80,114,111,103,114,97,109,109,105,101,114,117,110,103,47,82,117,115,116,47,115,114,99,47,116,97,114,103,101,116,47,100,101,98,117,103,47,46,102,105,110,103,101,114,112,114,105,110,116,47,104,101,108,108,111,95,119,111,114,108,100,45,57,52,51,56,49,55,100,52,54,99,48,52,52,53,53,56,47,100,101,112,45,98,105,110,45,116,101,115,116,45,57,52,51,56,49,55,100,52,54,99,48,52,52,53,53,56]]},"features":"None","deps":[],"rustflags":[]} \ No newline at end of file diff --git a/target/debug/.fingerprint/hello_world-943817d46c044558/dep-bin-test-943817d46c044558 b/target/debug/.fingerprint/hello_world-943817d46c044558/dep-bin-test-943817d46c044558 new file mode 100755 index 0000000..ffd2366 Binary files /dev/null and b/target/debug/.fingerprint/hello_world-943817d46c044558/dep-bin-test-943817d46c044558 differ diff --git a/target/debug/deps/test-943817d46c044558 b/target/debug/deps/test-943817d46c044558 new file mode 100755 index 0000000..3c69f59 Binary files /dev/null and b/target/debug/deps/test-943817d46c044558 differ diff --git a/target/debug/test b/target/debug/test new file mode 100755 index 0000000..3c69f59 Binary files /dev/null and b/target/debug/test differ diff --git a/target/debug/test.d b/target/debug/test.d new file mode 100755 index 0000000..014c9ea --- /dev/null +++ b/target/debug/test.d @@ -0,0 +1 @@ +/media/win_e/Clara_Daten/etc/Programmierung/Rust/src/target/debug/test: /media/win_e/Clara_Daten/etc/Programmierung/Rust/src/test.rs diff --git a/test.rs b/test.rs new file mode 100755 index 0000000..3032cdf --- /dev/null +++ b/test.rs @@ -0,0 +1,9 @@ +// my first rust programm +// aka "rust playground" + + +// main function +fn main() { + println!("Hello world!"); //print to console -> important: here not a tab, but 4 spaces! +} +