glisp 0.0.4

A lisp for genetic programming
#[macro_export]
macro_rules! c_function {
    ($return_type:ty, $function:ident) => {
        extern {
            pub fn $function() -> $return_type;
        }
    };
    ($return_type:ty, $function:ident, $( $var:ident : $type:ty ),*) => {
        extern {
            pub fn $function($($var: $type),*) -> $return_type;
        }
    };
}

#[cfg(test)]
mod tests {
    // #[test]
    // fn t() {
    //     assert!(6 == 6)
    // }
}