add 8, 11, 12

This commit is contained in:
woojin
2023-08-18 22:10:35 +09:00
parent e500317044
commit b0ee36a9ff
31 changed files with 1797 additions and 73 deletions

View File

@@ -0,0 +1,15 @@
//! Assignment 12: Concurrency.
//!
//! The primary goal of this assignment is to get used to concurrency.
//!
//! You should fill out the `todo!()` placeholders in such a way that `/scripts/grade-12.sh` works fine.
//! See `assignment12_grade.rs` and `/scripts/grade-12.sh` for the test script.
pub mod card;
pub mod card_grade;
pub mod demux;
pub mod demux_grade;
pub mod funnel;
pub mod funnel_grade;
pub mod small_exercises;
pub mod small_exercises_grade;