Browse Source

Initialized task1.

Joshua Rutschmann 8 years ago
parent
commit
1dfb14eb3b
4 changed files with 13 additions and 0 deletions
  1. 0
    0
      hw8/task1/ANSWERS.md
  2. 6
    0
      hw8/task1/Cargo.toml
  3. 7
    0
      hw8/task1/src/lib.rs
  4. 0
    0
      hw8/task1/src/main.rs

+ 0
- 0
hw8/task1/ANSWERS.md View File


+ 6
- 0
hw8/task1/Cargo.toml View File

1
+[package]
2
+name = "task1"
3
+version = "0.1.0"
4
+authors = ["Joshua Rutschmann <joshua.rutschmann@gmx.de>"]
5
+
6
+[dependencies]

+ 7
- 0
hw8/task1/src/lib.rs View File

1
+#[cfg(test)]
2
+mod tests {
3
+    #[test]
4
+    fn it_works() {
5
+        assert_eq!(2 + 2, 4);
6
+    }
7
+}

+ 0
- 0
hw8/task1/src/main.rs View File


Loading…
Cancel
Save