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