Merge branch 'master' of euphorik.ch:rup into master
[rup.git] / common / src / lib.rs
diff --git a/common/src/lib.rs b/common/src/lib.rs
new file mode 100644 (file)
index 0000000..5112279
--- /dev/null
@@ -0,0 +1,13 @@
+
+fn f(a: i32, b: i32) -> i32 {
+    a + 2 * b
+}
+
+mod tests {
+    use super::*;
+
+    #[test]
+    fn it_works() {
+        assert_eq!(2 + 2, 4);
+    }
+}
\ No newline at end of file