Public API and docs

This commit is contained in:
2023-05-26 15:23:15 +01:00
parent 3c1a6e2be2
commit fdf18e6ff8
99 changed files with 503 additions and 406 deletions

11
src/stl/mk_stl.rs Normal file
View File

@@ -0,0 +1,11 @@
use super::bool::bool;
use super::conv::conv;
use super::cpsio::cpsio;
use super::num::num;
use super::str::str;
use crate::interner::Interner;
use crate::pipeline::ConstTree;
pub fn mk_stl(i: &Interner) -> ConstTree {
cpsio(i) + conv(i) + bool(i) + str(i) + num(i)
}