added crate mutlithreading

This commit is contained in:
Sven Vogel 2023-05-23 22:28:11 +02:00
parent e48176707a
commit cbf42d6d57
1 changed files with 2 additions and 0 deletions

View File

@ -1,3 +1,5 @@
mod multithreading;
pub fn add(left: usize, right: usize) -> usize { pub fn add(left: usize, right: usize) -> usize {
left + right left + right
} }