This commit is contained in:
jane 2021-12-28 17:53:14 -05:00
parent d4d43e12e3
commit b9a1bcebf0

View file

@ -121,6 +121,7 @@ impl Pattern for Value {
} }
pub fn parse_line(v: Vec<String>) -> Result<Box<dyn Pattern>, ParseError> { pub fn parse_line(v: Vec<String>) -> Result<Box<dyn Pattern>, ParseError> {
println!("{:?}", v);
v.try_into() v.try_into()
} }