Skip to content

Instantly share code, notes, and snippets.

@ayrat555
Created September 22, 2018 20:12
Show Gist options
  • Save ayrat555/782aff222a6c4236d15f32654d0ea9c9 to your computer and use it in GitHub Desktop.
Save ayrat555/782aff222a6c4236d15f32654d0ea9c9 to your computer and use it in GitHub Desktop.
named!(command<&str, &str>,
do_parse!(
com: take_until!(COMMAND_TERMINATOR) >>
tag!(COMMAND_TERMINATOR) >>
(com)
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment