Skip to content

Instantly share code, notes, and snippets.

@mloc
Created February 17, 2018 13:12
Show Gist options
  • Save mloc/cdae7df8c733ca8f3dfd0b633cdf8a62 to your computer and use it in GitHub Desktop.
Save mloc/cdae7df8c733ca8f3dfd0b633cdf8a62 to your computer and use it in GitHub Desktop.
#[macro_use] extern crate nom;
named!(ident,
recognize!(tuple!(
tag!('_'),
tag!('_')
))
);
fn main() {
println!("Hello, world!");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment