Parse Multiple Lines Of Input With nom In Rust
//! ```cargo
//! [dependencies]
//! nom = "7.1.3"
//! ```
use alt;
use is_not;
use line_ending;
use space1;
use eof;
use many1;
use separated_list1;
use terminated;
use IResult;
Output:
[neopolitan_code_run:28] output.unwrap().1 = [
[
"alfa",
"bravo",
"charlie",
],
[
"delta",
"echo",
"foxtrot",
"golf",
],
[
"hotel",
"india",
],
[
"juliette",
],
[
".",
".",
"#",
],
]
-- end of line --