Guest User

Untitled

a guest
May 26th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. named!(pub string_parser<Input, StringLiteral>, map!(
  2. delimited!(
  3. tag!("\n"),
  4. take_while!(is_not_quote),
  5. tag!("\n")
  6. ),
  7. convert_string_literal
  8. ));
Add Comment
Please, Sign In to add comment