free 0.0.1

Macro-based free monads in Rust
1
2
3
4
5
6
7
8
9
10
11
12
13
#![crate_name="free"]
#![crate_type="lib"]

#![license = "MIT"]
#![doc(html_root_url = "http://www.rust-ci.org/epsilonz/free.rs/doc/free/")]

#![feature(phase)]
#![feature(unboxed_closures)]

#[phase(link, plugin)]
extern crate free_macros;

pub mod free;