mirror of
https://github.com/kmc7468/cs220.git
synced 2025-12-12 21:08:45 +00:00
21 lines
582 B
Rust
21 lines
582 B
Rust
//! Assignment 3: Mastering common programming concepts (2/2)
|
|
//!
|
|
//! You should fill out the `todo!()` placeholders in such a way that `/scripts/grade.sh 3` works fine.
|
|
//! See `assignment03/*_grade.rs` and `/scripts/grade.sh 3` for the test script.
|
|
//!
|
|
//! To submit, run
|
|
//! ```bash
|
|
//! # At the cs220 home directory,
|
|
//! ./scripts/submit.sh
|
|
//! ```
|
|
//! and submit the generated `assignment03.zip` file in `target` directory.
|
|
|
|
pub mod small_exercises;
|
|
mod small_exercises_grade;
|
|
|
|
pub mod parse_shell;
|
|
mod parse_shell_grade;
|
|
|
|
pub mod custom_operators;
|
|
mod custom_operators_grade;
|