Add assignment 2 skeleton

This commit is contained in:
Jeehoon Kang
2022-08-30 02:28:54 +09:00
parent a11ff5a783
commit 84548a8325
3 changed files with 41 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
//! Assignment 2: Mastering common programming concepts (1/2).
// TODO: use exercises in <https://doc.rust-lang.org/book/ch03-05-control-flow.html>

View File

@@ -0,0 +1,4 @@
#[cfg(test)]
mod test {
use super::super::assignment02::*;
}