Files
cs220/src/assignments/assignment02/mod.rs
woojin f4f24451c5 wip
2023-08-23 15:56:12 +09:00

14 lines
598 B
Rust

//! Assignment 2: Mastering common programming concepts (1/2).
//!
//! The primary goal of this assignment is to re-learn the common programming concepts in Rust, especially those in the Rust Book chapters 3 and 5.
//! Please make sure you're comfortable with the concepts to proceed on to the next assignments.
//!
//! You should fill out the `todo!()` placeholders in such a way that `/scripts/grade.sh 2` works fine.
//! See `assigment02/*_grade.rs` and `/scripts/grade.sh 2` for the test script.
pub mod small_exercises;
mod small_exercises_grade;
pub mod vec_and_mat;
mod vec_and_mat_grade;