//! 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. pub mod church; pub mod small_exercises; mod church_grade; mod small_exercises_grade;