Skip to content

Instantly share code, notes, and snippets.

@m4rw3r
m4rw3r / playground.rs
Last active February 11, 2017 12:15 — forked from anonymous/playground.rs
Shared via Rust Playground
#[macro_use]
extern crate chomp;
use std::rc::Rc;
use chomp::prelude::{token, SimpleResult, parse_only};
use chomp::ascii::{is_alphanumeric, is_whitespace};
use chomp::types::{Buffer, U8Input};
use chomp::parsers::{take_while1, skip_while};
use chomp::combinators::many;