1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
#[macro_use] extern crate adapton;

// // Source language (IODyn)
// // ------------------------
// #[macro_use] pub mod ast;
// pub mod bitype;
// pub mod prims;
// pub mod eval;

// Target language (Typed Adapton)
// --------------------------------
#[macro_use]
pub mod ast;
pub mod bitype;
pub mod eval;
pub mod vis;
pub mod stdlib;

// Translation
// ------------------
// pub mod translate;