add pure.spl to stdlib
This commit is contained in:
parent
2f8c50e3f0
commit
0fb01cfb20
1 changed files with 2 additions and 0 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue