Since the type checker sucks less now, we can think about maybe adding some features to the language. ...At some point I'd like to have the type checker clean up the index map.
23 lines
260 B
Common Lisp
23 lines
260 B
Common Lisp
//! # The Conlang Standard Library
|
|
|
|
pub mod preamble {
|
|
pub use super::{
|
|
num::*,
|
|
range::{RangeExc, RangeInc},
|
|
str::str,
|
|
};
|
|
}
|
|
|
|
pub mod num;
|
|
|
|
pub mod str;
|
|
|
|
pub mod option;
|
|
|
|
pub mod result;
|
|
|
|
pub mod range;
|
|
|
|
#[cfg("test")]
|
|
mod test;
|