Guest User

Untitled

a guest
May 24th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. named!(pub expr<&str, Expression>,
  2. do_parse!(
  3. tag!("{") >>
  4. many0!(nom::space) >>
  5. args: ws!(separated_list!(nom::space, parse_args)) >>
  6. many0!(nom::space) >>
  7. tag!("}") >>
  8. (Expression::Symbolic(args))
  9. )
  10. );
Add Comment
Please, Sign In to add comment