mirror of
https://bitbucket.org/Mattrixwv/projecteulerrust.git
synced 2025-12-06 17:43:58 -05:00
12 lines
217 B
Rust
12 lines
217 B
Rust
//ProjectEulerRust/src/Problems.rs
|
|
//Matthew Ellison
|
|
// Created: 06-11-20
|
|
//Modified: 06-13-20
|
|
//This file just forwards all the problem modules
|
|
|
|
|
|
pub mod Answer;
|
|
pub mod Problem1;
|
|
pub mod Problem2;
|
|
pub mod Problem3;
|