A card game engine for TCGs, primarily Magic: The Gathering but with support for others
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

core folder was still in the repo

-20
-6
core/Cargo.toml
··· 1 - [package] 2 - name = "managrove-core" 3 - version = "0.1.0" 4 - edition = "2024" 5 - 6 - [dependencies]
-14
core/src/lib.rs
··· 1 - pub fn add(left: u64, right: u64) -> u64 { 2 - left + right 3 - } 4 - 5 - #[cfg(test)] 6 - mod tests { 7 - use super::*; 8 - 9 - #[test] 10 - fn it_works() { 11 - let result = add(2, 2); 12 - assert_eq!(result, 4); 13 - } 14 - }