13 lines
150 B
Common Lisp
13 lines
150 B
Common Lisp
//! # The Conlang Standard Library
|
|
|
|
pub mod preamble {
|
|
pub use super::{num::*, str::str};
|
|
}
|
|
|
|
pub mod num;
|
|
|
|
pub mod str;
|
|
|
|
#[cfg("test")]
|
|
mod test;
|