Skip to content

Instantly share code, notes, and snippets.

@mloc
Created February 20, 2018 12:44
Show Gist options
  • Save mloc/7fde31ff7ca3aa26b0da898d3feeb367 to your computer and use it in GitHub Desktop.
Save mloc/7fde31ff7ca3aa26b0da898d3feeb367 to your computer and use it in GitHub Desktop.
#[macro_use] extern crate nom;
named!(parser<Vec<Vec<&[u8]>>>,
separated_list!(
tag!("def"),
many0!(tag!("abc"))
)
);
fn main() {
println!("Hello, world!");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment