nom 4.0.0-alpha2

A byte-oriented, zero-copy, parser combinators library
Documentation
#![allow(dead_code)]
#![allow(unused_variables)]


#[macro_use]
extern crate nom;

use std::str;


named_args!(atom<'a>(tomb: &'a mut ())<String>,
            map!(map_res!(is_not_s!(" \t\r\n()"), str::from_utf8), ToString::to_string));


named_args!(list<'a>(tomb: &'a mut ())<String>,
  delimited!(
    char!('('),
    fold_many0!(call!(atom, tomb), "".to_string(), |acc: String, next: String| acc + next.as_str()),
    char!(')')));