1use aoc_framework_macros::aoc_parser; 2 3#[aoc_parser(name = "raw_parser")] 4fn raw(a: &String) -> String { 5 String::from(a) 6}