Make a new puzzle!
()
| 23 | impl Puzzle { |
| 24 | /// Make a new puzzle! |
| 25 | pub fn new() -> Self { |
| 26 | let puzzle = Default::default(); |
| 27 | info!("Created a puzzle with new(): {:?}", puzzle); |
| 28 | puzzle |
| 29 | } |
| 30 | /// Load a puzzle from a file |
| 31 | pub fn from_file(_fh: File) -> Result<Self, PuzzleError> { |
| 32 | println!("HERE"); |
nothing calls this directly
no outgoing calls
no test coverage detected