1
0
Fork 0
mirror of https://github.com/notohh/rustlings.git synced 2025-07-03 15:39:15 -04:00

init new cargo project

This commit is contained in:
olivia 2018-04-26 21:41:19 +02:00
parent 5e89d1e888
commit 3ffefa32e1
3 changed files with 17 additions and 0 deletions

7
src/lib.rs Normal file
View file

@ -0,0 +1,7 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}