mirror of
https://github.com/kmc7468/cs220.git
synced 2025-12-12 21:08:45 +00:00
20 lines
581 B
Rust
20 lines
581 B
Rust
//! Assignment 8: First-class functions.
|
|
//!
|
|
//! The primary goal of this assignment is to get used to first-class functions.
|
|
//!
|
|
//! You should fill out the `todo!()` placeholders in such a way that `/scripts/grade.sh 8` works fine.
|
|
//! See `assignment08/*_grade.rs` and `/scripts/grade.sh 8` for the test script.
|
|
//!
|
|
//! To submit, run
|
|
//! ```bash
|
|
//! # At the cs220 home directory,
|
|
//! ./scripts/submit.sh
|
|
//! ```
|
|
//! and submit the generated `assignment08.zip` file in `target` directory.
|
|
|
|
pub mod church;
|
|
pub mod small_exercises;
|
|
|
|
mod church_grade;
|
|
mod small_exercises_grade;
|