add pure.spl to stdlib

This commit is contained in:
Daniella 2024-09-08 14:29:01 +02:00
parent 2f8c50e3f0
commit 0fb01cfb20

View file

@ -10,6 +10,7 @@ pub const MESSAGING: &str = include_str!("../messaging.spl");
pub const ASSEMBLE: &str = include_str!("../assemble.spl");
pub const ISBPL: &str = include_str!("../isbpl.spl");
pub const REPL: &str = include_str!("../repl.spl");
pub const PURE: &str = include_str!("../pure.spl");
pub fn register(runtime: &mut Runtime) {
multicall! {
@ -23,5 +24,6 @@ pub fn register(runtime: &mut Runtime) {
insert("assemble.spl", ASSEMBLE);
insert("isbpl.spl", ISBPL);
insert("repl.spl", REPL);
insert("pure.spl", PURE);
}
}