day.rs.tpl 318 B

12345678910111213141516
  1. use aoc2022_niels_overkamp::common::{self, AOCResult};
  2. const DAY: &str = "{{.day}}";
  3. fn main() -> Result<(), Box<dyn std::error::Error>> {
  4. common::run(DAY, &run)
  5. }
  6. pub fn run(input: &Vec<String>) -> AOCResult {
  7. Ok([None, None])
  8. }
  9. #[test]
  10. pub fn test_{{.day}}() {
  11. assert!(common::run_test(DAY, &run))
  12. }