2020-02-17 13:55:59 +01:00

7 lines
184 B
Rust

//! Writes the AST into a particular format; for instance,
//! `encoders::wat` writes the AST into a string representing WIT with
//! its textual format.
pub mod binary;
pub mod wat;